| 2281 | } |
| 2282 | |
| 2283 | txBoolean fxPatternParserDecimal(txPatternParser* parser, txU4* value) |
| 2284 | { |
| 2285 | txInteger c = parser->character; |
| 2286 | if (('0' <= c) && (c <= '9')) |
| 2287 | *value = (*value * 10) + (c - '0'); |
| 2288 | else |
| 2289 | return 0; |
| 2290 | return 1; |
| 2291 | } |
| 2292 | |
| 2293 | void fxPatternParserError(txPatternParser* parser, txString format, ...) |
| 2294 | { |
no outgoing calls
no test coverage detected