diff --git a/include/ctype.h b/include/ctype.h index 8c209c52..8117cf13 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -29,11 +29,22 @@ #else // ! WITH_GLIBC #include + +int isalnum (int c); int isalpha (int c); int isascii (int c); +int iscntrl (int c); int isdigit (int c); -int isxdigit (int c); +int islower (int c); +int isnumber (int c, int base); +int isprint (int c); +int ispunct (int c); int isspace (int c); +int isupper (int c); +int isxdigit (int c); +int tolower (int c); +int toupper (int c); + #endif // ! WITH_GLIBC #endif // __MES_CTYPE_H