00001 /* ndk - [ ctype.h ] 00002 * 00003 * Contains code for the libc ctype function 00004 * 00005 * (c)2002 dcipher / neuraldk 00006 * www.neuraldk.org 00007 */ 00008 00009 #ifndef __ndk_ctype_h__ 00010 #define __ndk_ctype_h__ 00011 00012 int isalnum(int c); 00013 int isalpha(int c); 00014 int isascii(int c); 00015 int isblank(int c); 00016 int iscntrl(int c); 00017 int isdigit(int c); 00018 int isgraph(int c); 00019 int islower(int c); 00020 int isprint(int c); 00021 int ispunct(int c); 00022 int isspace(int c); 00023 int isupper(int c); 00024 int isxdigit(int c); 00025 00026 #endif