]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsnprintf.c
Individual init to get around warnings on 64bit.
[pdclib] / functions / stdio / vsnprintf.c
index 4dbd7c27cfb03679a366558346ddb8d942b6bf8c..c2be5f9bbe9077d2ba9a461be0892b6e8cb03853 100644 (file)
@@ -14,7 +14,6 @@
 int vsnprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )
 {
     /* TODO: This function should interpret format as multibyte characters.  */
-    /* Members: base, flags, n, i, current, s, width, prec, stream, arg         */
     struct _PDCLIB_status_t status;
     status.base = 0;
     status.flags = 0;
@@ -26,7 +25,7 @@ int vsnprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restric
     status.prec = 0;
     status.stream = NULL;
     va_copy( status.arg, arg );
-    // = { 0, 0, n, 0, 0, s, 0, 0, NULL };
+
     while ( *format != '\0' )
     {
         const char * rc;