commit 7182646cf1c65c009e04b742d2b28213ec38439e from: Omar Polo date: Thu Feb 22 14:19:14 2024 UTC remove unused unicode_isspace commit - 7277380950ca952effbcb02a3c670907d79883bc commit + 7182646cf1c65c009e04b742d2b28213ec38439e blob - 0760907d326922d57431d6e5450a7fa2a6bb165f blob + ce94e52a229ffaa4b001023f37856a15d1dadf58 --- utils.c +++ utils.c @@ -56,14 +56,6 @@ has_suffix(const char *str, const char *sufx) } int -unicode_isspace(uint32_t cp) -{ - if (cp < INT8_MAX) - return isspace(cp); - return 0; -} - -int unicode_isgraph(uint32_t cp) { if (cp < INT8_MAX) blob - 47c7887821e79130989cfac0ba3609302959ca6c blob + 22aa162e6394184767edc64ea8aedf1398ecde81 --- utils.h +++ utils.h @@ -20,7 +20,6 @@ int mark_nonblock_cloexec(int); int has_suffix(const char *, const char *); -int unicode_isspace(uint32_t); int unicode_isgraph(uint32_t); void *hash_alloc(size_t, void *);