2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
6 #include <exec/rawfmt.h>
7 #include <proto/exec.h>
10 /*****************************************************************************
13 #include <proto/alib.h>
18 UBYTE
*buffer
, UBYTE
*format
, ...)
21 Print a formatted string to a buffer.
24 buffer -- the buffer to fill
25 format -- the format string, see the RawDoFmt() documentation for
26 information on which formatting commands there are
37 exec.library/RawDoFmt()
42 07.01.2000 SDuvan implemented
44 *****************************************************************************/
48 va_start(args
, format
);
49 VNewRawDoFmt(format
, RAWFMTFUNC_STRING
, buffer
, args
);