X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=rpikern;a=blobdiff_plain;f=src%2Flibc%2Fctype.h;fp=src%2Flibc%2Fctype.h;h=a36c6946191778758bcd359f079be1b0e09f9191;hp=0000000000000000000000000000000000000000;hb=36f1048dfeec94c6f305b76082fecec93347b2ec;hpb=993155fee2327f1f3cda285c9548bbb09688a3f3 diff --git a/src/libc/ctype.h b/src/libc/ctype.h new file mode 100644 index 0000000..a36c694 --- /dev/null +++ b/src/libc/ctype.h @@ -0,0 +1,18 @@ +#ifndef CTYPES_H_ +#define CTYPES_H_ + +int isalnum(int c); +int isalpha(int c); +#define isascii(c) ((c) < 128) +int isblank(int c); +int isdigit(int c); +int isupper(int c); +int islower(int c); +int isprint(int c); +int isspace(int c); + +int toupper(int c); +int tolower(int c); + + +#endif /* CTYPES_H_ */