2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 C99 function sprintf().
10 /*****************************************************************************
23 Formats a list of arguments and writes them into the string str.
26 str - The formatted string is written into this variable. You
27 must make sure that it is large enough to contain the
29 format - Format string as described above
30 ... - Arguments for the format string
33 The number of characters written into the string.
36 No checks are made that str is large enough for the result.
43 fprintf(), vprintf(), vfprintf(), snprintf(), vsprintf(),
48 *****************************************************************************/
53 va_start (args
, format
);
55 retval
= vsprintf (str
, format
, args
);