]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sprintf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / sprintf.c
index 4f2e6801e98fdbfc2ffa44ebe3083fa0d26833c1..ce3a7ff1054b73e7ab09665a8d41c395c629e2e9 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* sprintf( char *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
 
 int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ...)
 {
+    int rc;
     va_list ap;
     va_start( ap, format );
-    return vsnprintf( s, SIZE_MAX, format, ap );
+    rc = vsnprintf( s, SIZE_MAX, format, ap ); /* TODO: replace with non-checking call */
+    va_end( ap );
+    return rc;
 }
 
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#define _PDCLIB_FILEID "stdio/sprintf.c"
+#define _PDCLIB_STRINGIO
+#include <stddef.h>
+
+#include "_PDCLIB_test.h"
+
+#define testprintf( s, ... ) sprintf( s, __VA_ARGS__ )
 
 int main( void )
 {
-    TESTCASE( NO_TESTDRIVER );
+    char target[100];
+#include "printf_testcases.h"
     return TEST_RESULTS;
 }