MCPcopy Create free account
hub / github.com/apache/httpd / main

Function main

test/test_parser.c:58–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58int 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}

Callers

nothing calls this directly

Calls 1

ap_get_list_itemFunction · 0.85

Tested by

no test coverage detected