| 2437 | } |
| 2438 | |
| 2439 | void fxPatternParserTerminate(txPatternParser* parser) |
| 2440 | { |
| 2441 | txTerm* term = parser->first; |
| 2442 | while (term) { |
| 2443 | txTerm* next = term->next; |
| 2444 | c_free(term); |
| 2445 | term = next; |
| 2446 | } |
| 2447 | parser->first = NULL; |
| 2448 | } |
| 2449 | |
| 2450 | txInteger* fxAllocateRegExpData(void* the, txInteger* code) |
| 2451 | { |