kern

diff src/klibc/ctype.h @ 2:86781ef20689

added hardware scrolling, memset16 and temporary keyboard input for testing
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 04 Dec 2010 08:04:43 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/klibc/ctype.h	Sat Dec 04 08:04:43 2010 +0200
     1.3 @@ -0,0 +1,17 @@
     1.4 +#ifndef CTYPE_H_
     1.5 +#define CTYPE_H_
     1.6 +
     1.7 +int isalnum(int c);
     1.8 +int isalpha(int c);
     1.9 +#define isascii(c)	((c) < 128)
    1.10 +int isblank(int c);
    1.11 +int isdigit(int c);
    1.12 +int isupper(int c);
    1.13 +int islower(int c);
    1.14 +int isprint(int c);
    1.15 +int isspace(int c);
    1.16 +
    1.17 +int toupper(int c);
    1.18 +int tolower(int c);
    1.19 +
    1.20 +#endif	/* CTYPE_H_ */