Files
CrimzonKey/OauthWebServer/src/webserver.c

10 lines
156 B
C

#include "webserver.h"
// loads files into memory
char *loadFile(const char *path, long *sizeOut){
FILE *f = fopen(path, "rb");
if(!f) return NULL;
}