b49d8a144e3177404b46413bc78af3572dcfd678
[jansson.git] / src / utf.h
1 #ifndef UTF_H
2 #define UTF_H
3
4 int utf8_encode(int codepoint, char *buffer, int *size);
5
6 int utf8_check_first(char byte);
7 int utf8_check_full(const char *buffer, int size);
8
9 int utf8_check_string(const char *string, int length);
10
11 #endif