From 66032978e77880b3e6b199d61450316946b5fd4f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 28 Feb 2019 15:37:09 -0500 Subject: add missing "blank" --- src/wctype/wctype.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c index cad10dae..82a6ac5b 100644 --- a/src/wctype/wctype.c +++ b/src/wctype/wctype.c @@ -12,6 +12,8 @@ wctype_t wctype(const char * property) return CT_ALPHA | CT_DIGIT; } else if (!strcmp(property, "alpha")) { return CT_ALPHA; + } else if (!strcmp(property, "blank")) { + return CT_BLANK; } else if (!strcmp(property, "cntrl")) { return CT_CNTRL; } else if (!strcmp(property, "digit")) { -- cgit v1.2.1