ack/lang/cem/libcc.ansi/sys/stdio/vsprintf.c
David Given 9109d7af7f First stage in modularising FILE*. Refactor so that printf/scanf don't rely on
FILE* innards; allow plats to replace the entire emulated FILE* system.
2019-06-15 13:07:10 +02:00

17 lines
278 B
C

/*
* vsprintf - print formatted output without ellipsis on an array
*/
/* $Id$ */
#include <stdio.h>
#include <stdarg.h>
#include "loc_incl.h"
#if ACKCONF_WANT_STDIO
int vsprintf(char* s, const char* format, va_list ap)
{
return vsnprintf(s, 32767, format, ap);
}
#endif