2 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
5 Desc: Format a string and emit it.
8 #include <exec/execbase.h>
10 #define NO_INLINE_STDARG
11 #include <proto/exec.h>
13 /*****************************************************************************
20 CONST_STRPTR FormatString
,
26 This is the varargs version of exec.library/VNewRawDoFmt().
27 For information see exec.library/VNewRawDoFmt().
41 ******************************************************************************/
46 va_start(args
, PutChData
);
47 retval
= VNewRawDoFmt(FormatString
, PutChProc
, PutChData
, args
);