Upload files to "OauthWebServer/src"

This commit is contained in:
2025-12-05 19:41:03 +00:00
parent 2becc2e43d
commit 58138a7af6
2 changed files with 25 additions and 0 deletions

View 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;
}