ack/lang/cem/libcc.ansi/stdio/sprintf.c

32 lines
545 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* sprintf - print formatted output on an array
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-30 13:34:25 +00:00
#include <stdio.h>
#include <stdarg.h>
#include "loc_incl.h"
int
sprintf(char * s, const char *format, ...)
{
va_list ap;
int retval;
FILE tmp_stream;
va_start(ap, format);
tmp_stream._fd = -1;
1989-12-18 15:04:14 +00:00
tmp_stream._flags = _IOWRITE + _IONBF + _IOWRITING;
1989-05-30 13:34:25 +00:00
tmp_stream._buf = (unsigned char *) s;
tmp_stream._ptr = (unsigned char *) s;
tmp_stream._count = 32767;
retval = _doprnt(format, ap, &tmp_stream);
putc('\0',&tmp_stream);
va_end(ap);
return retval;
}