1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-05 05:53:33 +00:00
lovr/src/core/utf.h
2020-08-08 12:13:37 -06:00

6 lines
157 B
C

#include <stddef.h>
#include <stdint.h>
size_t utf8_decode(const char *s, const char *e, unsigned *pch);
void utf8_encode(uint32_t codepoint, char str[4]);