diff options
Diffstat (limited to 'string32.c')
-rw-r--r-- | string32.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -123,3 +123,7 @@ bool is32_alnum(char32_t c) { return c <= WINT_MAX && iswalnum((wint_t)c); } +// could this character appear in a C-style identifier? +bool is32_ident(char32_t c) { + return c <= WINT_MAX && (iswalnum((wint_t)c) || c == '_'); +} |