From 3e81c98dd6fce24409ebaac47de117d4f73537c6 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Wed, 8 Jun 2022 00:43:27 +0200 Subject: Fixed utf8 tables again. Separate casefold, toupper, tolower functions. --- include/stc/utf8.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/stc/utf8.h') diff --git a/include/stc/utf8.h b/include/stc/utf8.h index b80d8594..53d6cf40 100644 --- a/include/stc/utf8.h +++ b/include/stc/utf8.h @@ -33,6 +33,7 @@ bool utf8_isdigit(uint32_t c); bool utf8_isxdigit(uint32_t c); bool utf8_isalpha(uint32_t c); bool utf8_isalnum(uint32_t c); +uint32_t utf8_casefold(uint32_t c); uint32_t utf8_tolower(uint32_t c); uint32_t utf8_toupper(uint32_t c); bool utf8_valid(const char* s); -- cgit v1.2.3