X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fvsnprintf.c;h=c2be5f9bbe9077d2ba9a461be0892b6e8cb03853;hp=dee30dcea6f5e7b202fea93494d580d0de7da11b;hb=3c60673fd7479218b6f8069b848a1f5c2bd10114;hpb=45f394553721285e7bc6187419613c33915cce21 diff --git a/functions/stdio/vsnprintf.c b/functions/stdio/vsnprintf.c index dee30dc..c2be5f9 100644 --- a/functions/stdio/vsnprintf.c +++ b/functions/stdio/vsnprintf.c @@ -13,8 +13,17 @@ int vsnprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, _PDCLIB_va_list arg ) { - /* base, flags, n, i, current, s, width, prec, stream, arg */ - struct _PDCLIB_status_t status = { 0, 0, n, 0, 0, s, 0, 0, NULL, NULL }; + /* TODO: This function should interpret format as multibyte characters. */ + struct _PDCLIB_status_t status; + status.base = 0; + status.flags = 0; + status.n = n; + status.i = 0; + status.current = 0; + status.s = s; + status.width = 0; + status.prec = 0; + status.stream = NULL; va_copy( status.arg, arg ); while ( *format != '\0' )