| 56 | } |
| 57 | |
| 58 | int main (void) |
| 59 | { |
| 60 | apr_pool_t *p; |
| 61 | const char *field; |
| 62 | char *newstr; |
| 63 | char instr[512]; |
| 64 | |
| 65 | p = apr_pool_alloc_init(); |
| 66 | |
| 67 | while (gets(instr)) { |
| 68 | printf(" [%s] ==\n", instr); |
| 69 | field = instr; |
| 70 | while ((newstr = ap_get_list_item(p, &field)) != NULL) |
| 71 | printf(" <%s> ..\n", newstr); |
| 72 | } |
| 73 | |
| 74 | exit(0); |
| 75 | } |
nothing calls this directly
no test coverage detected