1
0
Fork 0

type stuff

This commit is contained in:
dtb 2023-11-18 14:57:32 -07:00
parent 771d26b32c
commit e5f7bc0ed5
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#include "libunicode.h"
utf8_t utf8(utf32_t c){
utf32_t utf8(utf32_t c){
unsigned char n; /* 4 - number of bytes - 1 */
utf8_t r;

View File

@ -13,4 +13,4 @@
#define UTF8_MAX 0x10FFFF
/* encode UTF-32 value into UTF-8 */
utf8_t utf8(utf32_t c);
utf32_t utf8(utf32_t c);