refactor(http): change cws_http_s to cws_request_s

This commit is contained in:
2025-10-26 19:23:28 +01:00
parent 699018727b
commit 2f265c40f5
6 changed files with 20 additions and 20 deletions

View File

@@ -9,6 +9,6 @@ size_t http_simple_html(char **response, cws_http_status_e status, char *title,
size_t http_response_builder(char **response, cws_http_status_e status, char *content_type,
char *body, size_t body_len_bytes);
void cws_http_send_response(cws_http_s *request, cws_http_status_e status);
void cws_http_send_response(cws_request_s *request, cws_http_status_e status);
#endif