From c78a087c38d433627987d8d20720836da046c857 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Thu, 28 Feb 2019 10:25:37 +0100 Subject: [PATCH] mescc: ctype.h: Add missing prototypes. * include/ctype.h: Add missing prototypes. --- include/ctype.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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