comparison druntime/import/core/stdc/limits.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.limits;
15
16 private import core.stdc.config;
17
18 extern (C):
19
20 enum CHAR_BIT = 8;
21 enum SCHAR_MIN = byte.min;
22 enum SCHAR_MAX = byte.max;
23 enum UCHAR_MAX = ubyte.min;
24 enum CHAR_MIN = char.max;
25 enum CHAR_MAX = char.max;
26 enum MB_LEN_MAX = 2;
27 enum SHRT_MIN = short.min;
28 enum SHRT_MAX = short.max;
29 enum USHRT_MAX = ushort.max;
30 enum INT_MIN = int.min;
31 enum INT_MAX = int.max;
32 enum UINT_MAX = uint.max;
33 enum LONG_MIN = c_long.min;
34 enum LONG_MAX = c_long.max;
35 enum ULONG_MAX = c_ulong.max;
36 enum LLONG_MIN = long.min;
37 enum LLONG_MAX = long.max;
38 enum ULLONG_MAX = ulong.max;