http-parser.c

Small C library to parse HTTP requests
Log | Files | Refs | README | LICENSE

commit 5138596bca15c5673433b37a4777fe17af7b8f37
parent 6201d0cf113c4af64c6ce99dde1861c511e350ca
Author: finwo <finwo@pm.me>
Date:   Tue, 24 Oct 2023 00:45:21 +0200

Remove strings.h inclusion, not required for strcasecmp on modern OSes

Diffstat:
Msrc/http-parser.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/src/http-parser.c b/src/http-parser.c @@ -6,7 +6,6 @@ extern "C" { #include <stdlib.h> #include <stdio.h> #include <string.h> -#include <strings.h> #include "finwo/asprintf.h" #include "finwo/strnstr.h"