diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-11 21:08:35 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-11 21:08:35 +0200 |
commit | a1749aa9bbe5abc10bde30b2bf1210091e0ee2d4 (patch) | |
tree | ea5127335714867e2bdd0478964d154e42bbbebf /include | |
parent | b303c3bb16e8d312df47bb01007de741bff23b77 (diff) |
Add uprop_get_s[ult]c()
Diffstat (limited to 'include')
-rw-r--r-- | include/unicode/prop.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/unicode/prop.h b/include/unicode/prop.h index 7d8e904..9d1f815 100644 --- a/include/unicode/prop.h +++ b/include/unicode/prop.h @@ -151,6 +151,9 @@ enum uprop_nt { [[__nodiscard__, __unsequenced__]] enum uprop_lb uprop_get_lb(rune); [[__nodiscard__, __unsequenced__]] enum uprop_nt uprop_get_nt(rune); [[__nodiscard__, __unsequenced__]] rune uprop_get_bpb(rune); +[[__nodiscard__, __unsequenced__]] rune uprop_get_slc(rune); +[[__nodiscard__, __unsequenced__]] rune uprop_get_stc(rune); +[[__nodiscard__, __unsequenced__]] rune uprop_get_suc(rune); [[__nodiscard__, __unsequenced__]] struct u8view uprop_get_na1(rune); [[__nodiscard__, __unsequenced__]] struct u8view uprop_get_na(rune); |