Upload files to "OauthWebServer/src"
This commit is contained in:
9
OauthWebServer/src/webserver.c
Normal file
9
OauthWebServer/src/webserver.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "webserver.h"
|
||||
|
||||
|
||||
// loads files into memory
|
||||
char *loadFile(const char *path, long *sizeOut){
|
||||
|
||||
FILE *f = fopen(path, "rb");
|
||||
if(!f) return NULL;
|
||||
}
|
||||
Reference in New Issue
Block a user