diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-14 22:51:02 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-14 22:51:02 +0200 |
commit | 5984a3211cc8a214305b9acbff07b3f3b78cac09 (patch) | |
tree | 37bde1be87679f7210ec5c8d978463e86cc1593c /include | |
parent | 22d849368f0e07ce5d2148a9ad760a16f2b64531 (diff) |
Change UF_* for CF_*
Diffstat (limited to 'include')
-rw-r--r-- | include/unicode/string.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/unicode/string.h b/include/unicode/string.h index 0341af9..6197235 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -7,10 +7,10 @@ #include "__u8view.h" enum [[clang::__flag_enum__]] caseflags { - UF_LANG_AZ = 1 << 0, /* Azeri; alias for UF_LANG_TR */ - UF_LANG_TR = 1 << 0, /* Turkish; alias for UF_LANG_AZ */ - UF_LANG_LT = 1 << 1, /* Lithuanian */ - UF_ẞ = 1 << 2, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ + CF_LANG_AZ = 1 << 0, /* Azeri; alias for UF_LANG_TR */ + CF_LANG_TR = 1 << 0, /* Turkish; alias for UF_LANG_AZ */ + CF_LANG_LT = 1 << 1, /* Lithuanian */ + CF_ẞ = 1 << 2, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ }; size_t u8glen(const char8_t *, size_t); |