OILS / data_lang / utf8_impls / utf8_decode.h View on Github | oilshell.org

9 lines, 6 significant
1/* utf8_decode.h */
2
3#define UTF8_END -1
4#define UTF8_ERROR -2
5
6extern int utf8_decode_at_byte();
7extern int utf8_decode_at_character();
8extern void utf8_decode_init(char p[], int length);
9extern int utf8_decode_next();