1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00
stedolan-jq/c/jv_unicode.h
2012-09-04 20:38:47 +01:00

8 lines
184 B
C

#ifndef JV_UNICODE_H
#define JV_UNICODE_H
int jvp_utf8_decode_length(char startchar);
int jvp_utf8_encode_length(int codepoint);
int jvp_utf8_encode(int codepoint, char* out);
#endif