diff options
| author | Tyge Lovset <[email protected]> | 2023-01-02 09:00:47 +0100 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2023-01-02 09:00:47 +0100 |
| commit | 8c6ba8a3444e4b8640e7fe04f565cef57c850432 (patch) | |
| tree | 10119ea3bbef5ac2818874849231bad19ad7aa5a /include/stc/utf8.h | |
| parent | 91e79fc60713c1f09e940a7ee83ff2f8aa4f9d69 (diff) | |
| download | STC-modified-8c6ba8a3444e4b8640e7fe04f565cef57c850432.tar.gz STC-modified-8c6ba8a3444e4b8640e7fe04f565cef57c850432.zip | |
Added selected unicode character classes.
Diffstat (limited to 'include/stc/utf8.h')
| -rw-r--r-- | include/stc/utf8.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/stc/utf8.h b/include/stc/utf8.h index db98acd9..b30b0061 100644 --- a/include/stc/utf8.h +++ b/include/stc/utf8.h @@ -11,6 +11,7 @@ extern bool utf8_isdigit(uint32_t c); extern bool utf8_isxdigit(uint32_t c); extern bool utf8_isalpha(uint32_t c); extern bool utf8_isalnum(uint32_t c); +extern bool utf8_isgroup(int group, uint32_t c); extern uint32_t utf8_casefold(uint32_t c); extern uint32_t utf8_tolower(uint32_t c); extern uint32_t utf8_toupper(uint32_t c); |
