2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
37 IMPORT_C int isalnum(int c);
38 IMPORT_C int isalpha(int c);
39 IMPORT_C int iscntrl(int c);
40 IMPORT_C int isdigit(int c);
41 IMPORT_C int isgraph(int c);
42 IMPORT_C int islower(int c);
43 IMPORT_C int isprint(int c);
44 IMPORT_C int ispunct(int c);
45 IMPORT_C int isspace(int c);
46 IMPORT_C int isupper(int c);
47 IMPORT_C int isxdigit(int c);
48 IMPORT_C int tolower(int c);
49 IMPORT_C int toupper(int c);
52 not strict ansi, but popular nevertheless
54 #define isascii(c) ((unsigned)(c)<=0177)
55 #define toascii(c) ((c)&0177)
58 #define _tolower(c) tolower(c)
59 #define _toupper(c) toupper(c)
65 #endif /* _CTYPE_H_ */