Decode and check for correct UTF-8
[jansson.git] / src / utf.h
1 #ifndef UTF_H
2 #define UTF_H
3
4 int utf8_check_first(char byte);
5 int utf8_check_full(const char *buffer, int size);
6
7 int utf8_check_string(const char *string, int length);
8
9 #endif