www.digitalmars.com
Last update Mon Jun 19 20:51:26 2006

std.stdio

Standard I/O functions that extend std.c.stdio. std.c.stdio is automatically imported when importing std.stdio.

void writef(...);
Arguments are formatted per the format strings and written to stdout.

void writefln(...);
Same as writef, but a newline is appended to the output.

void fwritef(_iobuf * fp,...);
Same as writef, but output is sent to the stream fp instead of stdout.

void fwritefln(_iobuf * fp,...);
Same as writefln, but output is sent to the stream fp instead of stdout.