. \" Manual Seite fuer sprintf . \" @(#)sprintf.3 1.1 . \"
SPRINTF 3 "15. Juli 1988" "J\*org Schilling" "Schily\'s LIBRARY FUNCTIONS"
NAME
sprintf() - formats and places output in buffer
SYNOPSIS
 sprintf(buf,form,arg1\|.\|.\|.argn)
 char *buf;  char *form; 
DESCRIPTION
sprintf() is similar to fprintf() except the formatted output is placed into buf.
RETURNS
none
"SEE ALSO"
format(3), printf(3)
NOTES
A NULL ('\\0') is appended to the end of the formatted output. There is no check for overflowing the buffer.