3 /* vsprintf( char *, const char *, va_list ap )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
15 int vsprintf( char * str, const char * format, _PDCLIB_va_list arg )
17 return vsnprintf( str, SIZE_MAX, format, arg );
23 #include <_PDCLIB_test.h>
27 TESTCASE( NO_TESTDRIVER );