diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-22 22:40:02 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-22 22:48:25 +0200 |
commit | 0b7184dcb8250e6654e55174753b24e4cbfea052 (patch) | |
tree | 75229c77857a3cd0cb7026de86d60556e9f48b03 /py/misc.h | |
parent | 0914371faf29d2f4b7fdee8001e77847b130542b (diff) |
Implement octal and hex escapes in strings.
Diffstat (limited to 'py/misc.h')
-rw-r--r-- | py/misc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -43,6 +43,7 @@ bool unichar_isspace(unichar c); bool unichar_isalpha(unichar c); bool unichar_isprint(unichar c); bool unichar_isdigit(unichar c); +bool unichar_isxdigit(unichar c); /** string ******************************************************/ |