2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function sprintf().
9 #define sprintf sprintf
11 /*****************************************************************************
24 Formats a list of arguments and writes them into the string str.
27 str - The formatted string is written into this variable. You
28 must make sure that it is large enough to contain the
30 format - Format string as described above
31 ... - Arguments for the format string
34 The number of characters written into the string.
37 No checks are made that str is large enough for the result.
44 fprintf(), vprintf(), vfprintf(), snprintf(), vsprintf(),
49 *****************************************************************************/
54 va_start (args
, format
);
56 retval
= vsprintf (str
, format
, args
);