ack/lang/cem/libcc.ansi/core/printf/vsprintf.c
2019-06-15 13:53:20 +02:00

17 lines
256 B
C

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