view tango/tango/stdc/stddef.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents 1700239cab2e
children
line wrap: on
line source

/**
 * D header file for C99.
 *
 * Copyright: Public Domain
 * License:   Public Domain
 * Authors:   Sean Kelly
 * Standards: ISO/IEC 9899:1999 (E)
 */
module tango.stdc.stddef;

extern (C):

//alias typeof(int.sizeof)                    size_t;
//alias typeof(cast(void*)0 - cast(void*)0)   ptrdiff_t;

version( Win32 )
{
    alias wchar wint_t;
    alias wchar wchar_t;
    alias wchar wctype_t;
    alias wchar wctrans_t;

    const wchar WEOF = 0xFFFF;
}
else
{
    alias dchar wint_t;
    alias dchar wchar_t;
    alias dchar wctype_t;
    alias dchar wctrans_t;

    const dchar WEOF = 0xFFFF;
}