| 808 | } |
| 809 | |
| 810 | void* fxCharSetDigits(txPatternParser* parser) |
| 811 | { |
| 812 | txCharSet* result = fxPatternParserCreateTerm(parser, sizeof(txCharSet) + (2 * sizeof(txInteger)), fxCharSetMeasure); |
| 813 | result->stringCount = 0; |
| 814 | result->strings = C_NULL; |
| 815 | result->characters[0] = 2; |
| 816 | result->characters[1] = '0'; |
| 817 | result->characters[2] = '9' + 1; |
| 818 | return result; |
| 819 | } |
| 820 | |
| 821 | void* fxCharSetEmpty(txPatternParser* parser) |
| 822 | { |
no test coverage detected