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