Upload files to "OauthWebServer/include"

This commit is contained in:
2025-12-05 19:41:53 +00:00
parent 58138a7af6
commit c7477ecc07

View File

@@ -0,0 +1,17 @@
/* Copyright Wullie - wulliestudios this product is licenced under the WrathMark Licence*/
#ifndef webserver_h
#define webserver_h
// librarys
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys.types.h>
#include <netinet/in.h>
#define Buffer_size 16000
void startServer(int port, const char *directory);
#endif