1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 08:10:45 +00:00
falk-werner_webfuse-provider/test-src/test_main.c
2019-01-27 03:45:03 +01:00

14 lines
244 B
C

#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;
}