diff options
Diffstat (limited to 'string32.c')
-rw-r--r-- | string32.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -130,4 +130,5 @@ bool is32_digit(char32_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 == '_'); -}
\ No newline at end of file +} + |