diff options
Diffstat (limited to 'include/unicode/string.h')
-rw-r--r-- | include/unicode/string.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/unicode/string.h b/include/unicode/string.h new file mode 100644 index 0000000..c2a99c1 --- /dev/null +++ b/include/unicode/string.h @@ -0,0 +1,12 @@ +#ifndef MLIB_UNICODE_STRING_H +#define MLIB_UNICODE_STRING_H + +#include <stddef.h> + +#include "__charN_t.h" +#include "__u8view.h" + +size_t u8glen(const char8_t *, size_t); +size_t u8gnext(struct u8view *, const char8_t **, size_t *); + +#endif /* !MLIB_UNICODE_STRING_H */ |