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

26 lines
506 B
C
Raw Normal View History

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