| 210 | } |
| 211 | |
| 212 | txString fxGetNextDigitsB(txParser* parser, txString p, txString q) |
| 213 | { |
| 214 | int c = parser->character; |
| 215 | while (('0' <= c) && (c <= '1')) { |
| 216 | if (p < q) *p++ = (char)c; |
| 217 | fxGetNextCharacter(parser); |
| 218 | c = parser->character; |
| 219 | } |
| 220 | return p; |
| 221 | } |
| 222 | |
| 223 | txString fxGetNextDigitsD(txParser* parser, txString p, txString q, int* base) |
| 224 | { |
nothing calls this directly
no test coverage detected