httpdirfs/main.c

15 lines
216 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 01:03:23 +02:00
// gumbo_test(argc, argv);
// url_test();
http_test();
2018-07-18 17:26:26 +02:00
return 0;
}