diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-27 16:55:03 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-27 16:55:03 +0200 |
commit | 7da9dc4a5276934d3b1305ded4dd95c4b1ce1dd7 (patch) | |
tree | cb8383d61ee118fa676adc039da4863c13585fd7 /include | |
parent | 3c6a99ea878086781b07539ec28e60e9deea5750 (diff) |
Add CF_SS as an alias for CF_ẞ
Diffstat (limited to 'include')
-rw-r--r-- | include/unicode/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unicode/string.h b/include/unicode/string.h index 4b75864..afd4040 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -15,7 +15,8 @@ enum [[clang::flag_enum]] caseflags { CF_LANG_TR = 1 << 0, /* Turkish; alias for CF_LANG_AZ */ CF_LANG_LT = 1 << 1, /* Lithuanian */ CF_LANG_NL = 1 << 2, /* Dutch */ - CF_ẞ = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ + CF_SS = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’; alias for CF_ẞ */ + CF_ẞ = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’; alias for CF_SS */ }; /* clang-format on */ |