xref: /original-bsd/lib/libc/stdio/sprintf.c (revision a6b493b4)
1 /*
2  * Copyright (c) 1987 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)sprintf.c	5.6 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <stdio.h>
13 
14 sprintf(str, fmt, args)
15 	char *str, *fmt;
16 	int args;
17 {
18 	FILE _strbuf;
19 	int len;
20 
21 	_strbuf._flag = _IOWRT+_IOSTRG;
22 	_strbuf._ptr = str;
23 	_strbuf._cnt = 32767;
24 	len = _doprnt(fmt, &args, &_strbuf);
25 	*_strbuf._ptr = 0;
26 	return(len);
27 }
28