mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 16:40:48 +03:00
32 lines
512 B
D
32 lines
512 B
D
|
|
/**
|
|
* C's <stdio.h> for the D programming language
|
|
* Authors: Walter Bright, Digital Mars, http://www.digitalmars.com
|
|
* License: Public Domain
|
|
* Macros:
|
|
* WIKI=Phobos/StdCStdio
|
|
*/
|
|
|
|
|
|
|
|
module std.c.stdio;
|
|
|
|
public import core.stdc.stdio;
|
|
|
|
extern (C):
|
|
|
|
version (Win32)
|
|
{
|
|
extern FILE _iob[_NFILE];
|
|
extern void function() _fcloseallp;
|
|
extern ubyte __fhnd_info[_NFILE];
|
|
|
|
enum
|
|
{
|
|
FHND_APPEND = 0x04,
|
|
FHND_DEVICE = 0x08,
|
|
FHND_TEXT = 0x10,
|
|
FHND_BYTE = 0x20,
|
|
FHND_WCHAR = 0x40,
|
|
}
|
|
}
|