blob: 4e5910a40d3c43ea3bc964935bb3623a7b336b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* unicode.h
*
* Unicode - module with some helper unicode functions.
*
* SFML uses UTF32 encoding for texts and there is no need to use any full
* featured library just for a couple of encoding conversion functions.
*
* */
size_t utf8_strlen(char *string);
void utf8to32_strcpy(wchar_t *dest, char *src);
|