2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 C99 function vsprintf().
7 /* Original source from libnix */
10 static int _vsprintf_uc (int c
, char ** str
)
16 /*****************************************************************************
30 Format a list of arguments and put them into the string str.
33 str - The formatted result is stored here
34 format - A printf() format string.
35 args - A list of arguments for the format string.
38 The number of characters written.
41 No check is made that str is large enough to contain the result.
48 printf(), sprintf(), fprintf(), vprintf(), vfprintf(), snprintf(),
53 ******************************************************************************/
57 rc
= __vcformat (&str
, (void *)_vsprintf_uc
, format
, args
);