2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function fprintf().
10 /*****************************************************************************
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
);