1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 10:20:46 +00:00
falk-werner_webfuse-provider/test-src/test_main.c

14 lines
244 B
C
Raw Normal View History

2019-01-27 02:45:03 +00:00
#include <stdio.h>
#include <stdlib.h>
#include "test_util.h"
#include "wsfs/util.h"
extern void test_request_parser();
int main(int WSFS_UNUSED_PARAM(argc), char* WSFS_UNUSED_PARAM(argv[]))
{
test_request_parser();
return EXIT_SUCCESS;
}