fix string and pointer bugs to actually send 404

This commit is contained in:
Nayan
2025-05-08 17:37:23 -04:00
parent ddf6f8812f
commit b12cfd2c17
5 changed files with 12 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
#include "http_stuff.h"
#include "response_builder.h"
void handle_request(char* request, int length, char* response,
void handle_request(char* request, int length, char** response,
size_t* response_length);
#endif