isblank() implementation.

This commit is contained in:
Ben Gras
2010-04-08 15:00:25 +00:00
parent 48c6bb79f4
commit 1c8c8aa4d8
3 changed files with 8 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ SRCS+= \
isalnum.c \
isalpha.c \
isascii.c \
isblank.c \
iscntrl.c \
isdigit.c \
isgraph.c \

5
lib/libc/ansi/isblank.c Normal file
View File

@@ -0,0 +1,5 @@
#include <ctype.h>
int (isblank)(int c) {
return isblank(c);
}