| 257 | } |
| 258 | |
| 259 | txString fxGetNextDigitsX(txParser* parser, txString p, txString q) |
| 260 | { |
| 261 | int c = parser->character; |
| 262 | while ((('0' <= c) && (c <= '9')) || (('a' <= c) && (c <= 'f')) || (('A' <= c) && (c <= 'F'))) { |
| 263 | if (p < q) *p++ = (char)c; |
| 264 | fxGetNextCharacter(parser); |
| 265 | c = parser->character; |
| 266 | } |
| 267 | return p; |
| 268 | } |
| 269 | |
| 270 | void fxGetNextKeyword(txParser* parser) |
| 271 | { |
nothing calls this directly
no test coverage detected