diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 14:56:26 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 14:56:26 -0500 |
commit | c3566145e736866cdbb1aaa4a4673d151ad7653d (patch) | |
tree | ec9367327c9d2303fcc231be1835dad08dc6c33a /src/ctype/isalpha.c | |
parent | a425f8aea7920f7e37ad1c892a10908fb869a016 (diff) |
enable all <ctype.h> functions
Diffstat (limited to 'src/ctype/isalpha.c')
-rw-r--r-- | src/ctype/isalpha.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c index 2b363108..60d47a73 100644 --- a/src/ctype/isalpha.c +++ b/src/ctype/isalpha.c @@ -1,7 +1,6 @@ -#if 0 - #include <ctype.h> #include <limits.h> +#include <stdio.h> #include "_assert.h" /** test whether a character is alphabetic **/ @@ -25,6 +24,3 @@ C_LOCALE(`THIS() is true for characters for which FUNCTION(isupper) or FUNCTION( OTHER_LOCALES(`THIS is true for a set of characters for which none of FUNCTION(iscntrl), FUNCTION(isdigit), FUNCTION(ispunct), or FUNCTION(isspace) is true') STDC(1) */ - - -#endif |