X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=3sys;a=blobdiff_plain;f=sys1%2Fkern%2Fsrc%2Flibc%2Fctype.h;fp=sys1%2Fkern%2Fsrc%2Flibc%2Fctype.h;h=5b010d4de44dc1cf7b3246bcc6d3cc35ca65217f;hp=0000000000000000000000000000000000000000;hb=d49aa763f9b7c4ae66cf80f0cbfc3456789fc0ac;hpb=3e2e8a9156d288d230bbcd722bc91c4b3e4b21e1 diff --git a/sys1/kern/src/libc/ctype.h b/sys1/kern/src/libc/ctype.h new file mode 100644 index 0000000..5b010d4 --- /dev/null +++ b/sys1/kern/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_ */