(C) 1998 AROS - The Amiga Research OS
NAME
#include <stdio.h>
int sprintf ()
SYNOPSIS
char * str
const char * format
...
FUNCTION
Formats a list of arguments and writes them into the string str.
INPUTS
str
The formatted string is written into this variable. You must make sure that it is large enough to contain the result.
format
Format string as described above ... - Arguments for the format string
RESULT
The number of characters written into the string.
EXAMPLE
SEE ALSO
fprintf(), vprintf(), vfprintf(), snprintf(), vsprintf(), vnsprintf()
NOTES
No checks are made that str is large enough for the result.
BUGS
INTERNALS
HISTORY
20.10.1998 hkiel
Amiga Research OS
11.12.1996 aros
New functions: sprintf(), vsprintf(), snprintf() vsnprintf()
vfprintf() now uses __vcformat()