2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 C99 function fprintf().
10 /*****************************************************************************
19 const char * restrict format
,
23 Format a string with the specified arguments and write it to
27 fh - Write to this stream
28 format - How to format the arguments
29 ... - The additional arguments
32 The number of characters written to the stream or EOF on error.
44 ******************************************************************************/
49 va_start (args
, format
);
51 retval
= vfprintf (fh
, format
, args
);