Changeset 240
- Timestamp:
- 02/05/10 05:33:35 (15 years ago)
- Files:
-
- trunk/import/core/stdc/ctype.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/import/core/stdc/ctype.d
r205 r240 8 8 * 9 9 * Copyright Sean Kelly 2005 - 2009. 10 10 * Distributed under the Boost Software License, Version 1.0. 11 11 * (See accompanying file LICENSE_1_0.txt or copy at 12 12 * http://www.boost.org/LICENSE_1_0.txt) 13 13 */ 14 14 module core.stdc.ctype; 15 15 16 16 extern (C): 17 17 nothrow: 18 pure:19 18 @safe: 20 19 21 20 int isalnum(int c); 22 21 int isalpha(int c); 23 22 int isblank(int c); 24 23 int iscntrl(int c); 25 24 int isdigit(int c); 26 25 int isgraph(int c); 27 26 int islower(int c); 28 27 int isprint(int c);
