diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-05-20 17:56:55 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-05-20 17:56:55 +0200 |
commit | 2e125c1c7e75db14a88f0b8b09e61a132977c63e (patch) | |
tree | 30c37263315e07f983c2b05b69c17e47c827b849 /README | |
parent | d6b1db5c14ca1e731db299748d2df9eb955c9f7c (diff) |
Support the 4 forms of Unicode string normalization
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -123,7 +123,7 @@ FEATURES: • Encoding-generic macros (ucs*() instead of u8*()) • Iteration and counting of graphemes, words, and human-precieved words in a string - • NFD- and NFKD string normalization + • NFC-, NFD-, NFKC-, and NFKD string normalization • Unicode-aware case-mapping of strings with custom allocator support @@ -132,8 +132,8 @@ PLANNED FEATURES: • Line- and sentence segmentation (unicode/string.h) • String collation (unicode/string.h) - • NFC-, and NFKC string normalization (unicode/string.h) - • Merger of normalization functions into one (unicode/string.h) + • Use gperf to generate hashtables for (unicode/string.h) + unicode composition? BUGS: |