Remove ctype.h include.

This commit is contained in:
Alexander Andreev 2023-12-03 18:38:36 +04:00
parent c2efe3c9f0
commit 031a7c6892
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -4,7 +4,6 @@
#include <string.h> #include <string.h>
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include <ctype.h>
#define ISDIGIT(c) (c >= 0x30 && c <= 0x39) #define ISDIGIT(c) (c >= 0x30 && c <= 0x39)