2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
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 beeing made that str is large enough to contain
49 printf(), sprintf(), fprintf(), vprintf(), vfprintf(), snprintf(),
54 ******************************************************************************/
58 rc
= __vcformat (&str
, (void *)_vsprintf_uc
, format
, args
);