httpdirfs/main.c

25 lines
272 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 "network.h"
2018-07-18 17:26:26 +02:00
#include "test.h"
void init()
{
Network_init();
}
int main(int argc, char** argv)
{
2018-07-19 10:27:40 +02:00
(void) argc;
(void) argv;
init();
2018-07-20 16:38:44 +02:00
link_test();
2018-07-18 17:26:26 +02:00
return 0;
}