Files
memecoin-botV2/.pnpm-store/v10/files/7e/988157f197f4e0c76a3d112b0b4b492317b90e8180587cb98dd89ff89a9be8fbe5ef432fea42d006bc4969468e27cd30331cb3e3a9c47ff6ffdfad5f116bb7

11 lines
308 B
Plaintext

#ifndef IS_UTF8
#include <stddef.h>
// Check whether the provided string is UTF-8.
// The function is designed for use cases where
// 99.99% of the inputs are valid UTF-8.
// Thus the function unconditionally scans the
// whole input.
extern "C" bool is_utf8(const char *src, size_t len);
#endif // IS_UTF8