httpdirfs/main.c

17 lines
250 B
C
Raw Normal View History

2018-07-18 17:26:26 +02:00
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "test.h"
int main(int argc, char** argv) {
2018-07-19 10:27:40 +02:00
(void) argc;
(void) argv;
2018-07-19 01:03:23 +02:00
// gumbo_test(argc, argv);
// url_test();
http_test();
2018-07-18 17:26:26 +02:00
return 0;
}