X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdio%2Fsnprintf.c;h=a34558992e5b84a717282dc5da67a976cdaeec8b;hb=87195dbaff9d4b3827dcf3f714662b64077ddb42;hp=3a6e706f8ebeb1e1b8e59009f243347acd82c357;hpb=dd3dfcc3689617d8547d2c2ef5f87fc8c951763a;p=fw%2Fpdclib diff --git a/functions/stdio/snprintf.c b/functions/stdio/snprintf.c index 3a6e706..a345589 100644 --- a/functions/stdio/snprintf.c +++ b/functions/stdio/snprintf.c @@ -13,9 +13,12 @@ int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, ...) { + int rc; va_list ap; va_start( ap, format ); - return vsnprintf( s, n, format, ap ); + rc = vsnprintf( s, n, format, ap ); + va_end( ap ); + return rc; } #endif @@ -23,9 +26,17 @@ int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict #ifdef TEST #include <_PDCLIB_test.h> +#include +#include + +#define testprintf( s, n, format, ... ) snprintf( s, n, format, __VA_ARGS__ ) + +#define TESTCASE_SPRINTF( x ) TESTCASE( x ) + int main( void ) { - TESTCASE( NO_TESTDRIVER ); + char buffer[100]; +#include "printf_testcases.incl" return TEST_RESULTS; }