httpdirfs/main.c

27 lines
306 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 "link.h"
2018-07-18 17:26:26 +02:00
#include "test.h"
void init()
{
curl_global_init(CURL_GLOBAL_ALL);
}
2018-07-18 17:26:26 +02:00
int main(int argc, char** argv)
{
2018-07-19 10:27:40 +02:00
(void) argc;
(void) argv;
init();
gumbo_test();
url_test();
2018-07-18 17:26:26 +02:00
return 0;
}