commit 9e7fb11d9ef95c04fe286cef90cad831ab931d2f parent 2d6741e2c5fa76fd4509c6b16c3172a4a71130b6 Author: finwo <finwo@pm.me> Date: Tue, 12 Aug 2025 15:54:40 +0200 Add ctype for case changing methods Diffstat:
| M | src/strcasecmp.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/strcasecmp.c b/src/strcasecmp.c @@ -5,6 +5,7 @@ extern "C" { #include "strcasecmp.h" #if defined(_WIN32) || defined(_WIN64) +#include <ctype.h> // toupper, tolower int strcasecmp(const char *a, const char *b) { int ca, cb;