mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
14 lines
244 B
C
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;
|
|
}
|