comparison druntime/import/core/stdc/ctype.d @ 1458:e0b2d67cfe7c

Added druntime (this should be removed once it works).
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 02 Jun 2009 17:43:06 +0100
parents
children
comparison
equal deleted inserted replaced
1456:7b218ec1044f 1458:e0b2d67cfe7c
1 /**
2 * D header file for C99.
3 *
4 * Copyright: Copyright Sean Kelly 2005 - 2009.
5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt>Boost License 1.0</a>.
6 * Authors: Sean Kelly
7 * Standards: ISO/IEC 9899:1999 (E)
8 *
9 * Copyright Sean Kelly 2005 - 2009.
10 * Distributed under the Boost Software License, Version 1.0.
11 * (See accompanying file LICENSE_1_0.txt or copy at
12 * http://www.boost.org/LICENSE_1_0.txt)
13 */
14 module core.stdc.ctype;
15
16 extern (C):
17
18 int isalnum(int c);
19 int isalpha(int c);
20 int isblank(int c);
21 int iscntrl(int c);
22 int isdigit(int c);
23 int isgraph(int c);
24 int islower(int c);
25 int isprint(int c);
26 int ispunct(int c);
27 int isspace(int c);
28 int isupper(int c);
29 int isxdigit(int c);
30 int tolower(int c);
31 int toupper(int c);