comparison druntime/import/stdc/ctype.d @ 760:6f33b427bfd1

Seems like hg ignores .di files, so I missed a bunch of stuff. complete druntime should be there now :)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 12 Nov 2008 00:19:18 +0100
parents
children
comparison
equal deleted inserted replaced
759:d3eb054172f9 760:6f33b427bfd1
1 /**
2 * D header file for C99.
3 *
4 * Copyright: Public Domain
5 * License: Public Domain
6 * Authors: Sean Kelly
7 * Standards: ISO/IEC 9899:1999 (E)
8 */
9 module stdc.ctype;
10
11 extern (C):
12
13 int isalnum(int c);
14 int isalpha(int c);
15 int isblank(int c);
16 int iscntrl(int c);
17 int isdigit(int c);
18 int isgraph(int c);
19 int islower(int c);
20 int isprint(int c);
21 int ispunct(int c);
22 int isspace(int c);
23 int isupper(int c);
24 int isxdigit(int c);
25 int tolower(int c);
26 int toupper(int c);