source: trunk/sys/dietlibc/include/ctype.h @ 1

Last change on this file since 1 was 1, checked in by alain, 7 years ago

First import

File size: 984 bytes
RevLine 
[1]1#ifndef _CTYPE_H
2#define _CTYPE_H
3
4extern int isascii (int c)  __attribute__ ((__const__));
5extern int isblank (int c)  __attribute__ ((__const__));
6extern int isalnum (int c)  __attribute__ ((__const__));
7extern int isalpha (int c)  __attribute__ ((__const__));
8extern int isdigit (int c)  __attribute__ ((__const__));
9extern int isspace (int c)  __attribute__ ((__const__));
10
11extern int isupper (int c)  __attribute__ ((__const__));
12extern int islower (int c)  __attribute__ ((__const__));
13
14extern int toascii(int c)  __attribute__ ((__const__));
15extern int tolower(int c)  __attribute__ ((__const__));
16extern int toupper(int c)  __attribute__ ((__const__));
17
18extern int isprint(int c)  __attribute__ ((__const__));
19extern int ispunct(int c)  __attribute__ ((__const__));
20extern int iscntrl(int c)  __attribute__ ((__const__));
21
22/* fscking GNU extensions! */
23extern int isxdigit(int c)  __attribute__ ((__const__));
24
25extern int isgraph(int c)  __attribute__ ((__const__));
26
27
28#endif
Note: See TracBrowser for help on using the repository browser.