Differences From Artifact [2966150d34]:
- File src/th.h — part of check-in [1f6734c30b] at 2014-04-03 15:14:11 on branch trunk — Add support for hex (0x), octal (0o) and binary (0b) integers, just as Tcl. Adapted from patch provided by Sergei Gavrikov. (user: jan.nijtmans size: 5710)
To Artifact [f55e2863d3]:
- File src/th.h — part of check-in [a306f771d8] at 2014-04-04 08:16:51 on branch trunk — Fix error-handling in parsing of binary/octal/hex integers for th1. Add test-cases for it. (user: jan.nijtmans size: 5732) [more...]
| ︙ | |||
143 144 145 146 147 148 149 150 151 152 153 154 155 156 | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | + | /* ** Drop in replacements for the corresponding standard library functions. */ int th_strlen(const char *); int th_isdigit(char); int th_isspace(char); int th_isalnum(char); int th_isalpha(char); int th_isspecial(char); int th_ishexdig(char); int th_isoctdig(char); int th_isbindig(char); char *th_strdup(Th_Interp *interp, const char *z, int n); /* |
| ︙ |