diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-02 19:01:58 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-02 19:01:58 -0500 |
commit | 59960f2907f6ea8af83dc606273d304e923fb4b6 (patch) | |
tree | c917d757b5d16f160f42624ec0e6cb444e2e1011 /string32.c | |
parent | e8b7d01ff68fed675d1397f4556f159f0c32246d (diff) |
better syntax highlighting (split keywords into keywords + builtins)
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 +} + |