summaryrefslogtreecommitdiffhomepage
path: root/include/stc/utf8.h
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-06-08 00:43:27 +0200
committerTyge Løvset <[email protected]>2022-06-08 00:43:27 +0200
commit3e81c98dd6fce24409ebaac47de117d4f73537c6 (patch)
tree83017e25ecb9f7d0ca0c84280768b0be9ce68848 /include/stc/utf8.h
parent23f458d4f1cc94c8fe7345b24c788b4788826dfe (diff)
downloadSTC-modified-3e81c98dd6fce24409ebaac47de117d4f73537c6.tar.gz
STC-modified-3e81c98dd6fce24409ebaac47de117d4f73537c6.zip
Fixed utf8 tables again. Separate casefold, toupper, tolower functions.
Diffstat (limited to 'include/stc/utf8.h')
-rw-r--r--include/stc/utf8.h1
1 files changed, 1 insertions, 0 deletions
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);