X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Finclude_exp%2Fctype.h;h=ddb0a614d351c2141274fff27462f83ced299f27;hb=8cf9dc88c488ba959a211f1ec653a366d16e1531;hp=4c5613b6ed9b24fd908b4d14f0c165c01fff69c8;hpb=d0b4559f2936f6d9f06be0f7c3c51527a480ec0d;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc.so_src/include_exp/ctype.h b/Usermode/Libraries/libc.so_src/include_exp/ctype.h index 4c5613b6..ddb0a614 100644 --- a/Usermode/Libraries/libc.so_src/include_exp/ctype.h +++ b/Usermode/Libraries/libc.so_src/include_exp/ctype.h @@ -35,5 +35,11 @@ static inline int isspace(int ch) { if(ch == '\n') return 1; return 0; } +// C99 +static inline int isblank(int ch) { + if(ch == ' ') return 1; + if(ch == '\t') return 1; + return 0; +} #endif