(C) 1998 AROS - The Amiga Research OS


NAME
#include <stdio.h>
#include <stdarg.h>

int vsprintf ()

SYNOPSIS
char * str
const char * format
va_list args

FUNCTION
Format a list of arguments and put them into the string str.

INPUTS
str
The formatted result is stored here
format
A printf() format string.
args
A list of arguments for the format string.

RESULT
The number of characters written.

EXAMPLE

SEE ALSO
printf(), sprintf(), fprintf(), vprintf(), vfprintf(), snprintf(), vsnprintf()

NOTES
No check is beeing made that str is large enough to contain the result.

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
08.01.1997 ldp
Removed/Changed cases of multiple include files
11.12.1996 aros
New functions: sprintf(), vsprintf(), snprintf() vsnprintf()

vfprintf() now uses __vcformat()