Rewrite and filling of libc/ctype.c (thus adjusting copyright line).
[coreboot.git] / payloads / libpayload / include / libpayload.h
index 4b868b447af4ddd24e0d115523f91a4e974a8cce..27668e168e3778f70ac00b18ef151d362700a529 100644 (file)
@@ -99,9 +99,21 @@ extern int last_putchar;
 #define havechar havekey
 
 /* libc/ctype.c */
-int isspace(int c);
+int isalnum(int c);
+int isalpha(int c);
+int isascii(int c);
+int isblank(int c);
+int iscntrl(int c);
 int isdigit(int c);
+int isgraph(int c);
+int islower(int c);
+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);
 
 /* libc/ipchecksum.c */
 unsigned short ipchksum(const unsigned short *ptr, unsigned long nbytes);