test_parser.c revision 066877f1a045103acfdd376d48cdd473c33f409b
*
* The defines in this sample compile line are specific to Roy's system.
* They should match whatever was used to compile Apache first.
*
-DSOLARIS2=250 -Wall -DALLOC_DEBUG -DPOOL_DEBUG \
../ap/libap.a -lsocket -lnsl test_parser.c
*
* Roy Fielding, 1999
*/
#include <stdio.h>
#include <stdlib.h>
#include "httpd.h"
#include "apr_general.h"
/*
* Dummy a bunch of stuff just to get a compile
*/
void *ap_dummy_mutex = &ap_dummy_mutex;
char *ap_server_argv0;
AP_DECLARE(void) ap_block_alarms(void)
{
;
}
AP_DECLARE(void) ap_unblock_alarms(void)
{
;
}
const request_rec *r, const char *fmt, ...)
{
;
}
int main (void)
{
apr_pool_t *p;
const char *field;
char *newstr;
char instr[512];
p = apr_pool_alloc_init();
}
exit(0);
}