10 lines
154 B
C
10 lines
154 B
C
#ifndef UTF
|
|
#define UTF
|
|
|
|
typedef uint32_t CodePoint;
|
|
|
|
int CodePointsFromUtf8String(char const *str, CodePoint *target, unsigned int max);
|
|
|
|
#endif // UTF
|
|
|