mescc: ctype.h: Add missing prototypes.

* include/ctype.h: Add missing prototypes.
This commit is contained in:
Jan Nieuwenhuizen 2019-01-03 10:25:37 +01:00
parent f87cef0a59
commit f0c361f955
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 12 additions and 1 deletions

View File

@ -29,11 +29,22 @@
#else // ! WITH_GLIBC
#include <endian.h>
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