1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

added example for provider

This commit is contained in:
Falk Werner
2019-02-16 16:28:14 +01:00
parent 561a9f4eb5
commit 4396dddd2b
13 changed files with 36 additions and 10 deletions

12
example/provider/main.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include "wsfs_provider.h"
int main(int argc, char* argv[])
{
(void) argc;
(void) argv;
return EXIT_FAILURE;
}