X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Flibc%2Fctype.h;fp=src%2Flibc%2Fctype.h;h=5b010d4de44dc1cf7b3246bcc6d3cc35ca65217f;hb=d1e8a437c1fab4535f82c4c214ec3330ac32e48d;hp=0000000000000000000000000000000000000000;hpb=34ae2440d7cd133051523bce2aac0760cf8296eb;p=bootcensus diff --git a/src/libc/ctype.h b/src/libc/ctype.h new file mode 100644 index 0000000..5b010d4 --- /dev/null +++ b/src/libc/ctype.h @@ -0,0 +1,17 @@ +#ifndef CTYPE_H_ +#define CTYPE_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 /* CTYPE_H_ */