Initial commit

This commit is contained in:
Pin
2022-01-29 18:12:15 -05:00
commit b367f853af
6 changed files with 179 additions and 0 deletions

9
include/httpStruct.h Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdint.h>
// HTTP Request Struct
struct HTTPRequest {
char *requestType;
char *requestVersion;
char *requestHost;
};