X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fvsnprintf.c;h=c2be5f9bbe9077d2ba9a461be0892b6e8cb03853;hb=3b629bbf603f999ee325e462da600113c29f9cee;hp=21e76b1439e4e65ab29c5f194e1a75927792abd1;hpb=aeb0a31a5b54eb00a327835a25054481bf2e8f0a;p=pdclib.old diff --git a/functions/stdio/vsnprintf.c b/functions/stdio/vsnprintf.c index 21e76b1..c2be5f9 100644 --- a/functions/stdio/vsnprintf.c +++ b/functions/stdio/vsnprintf.c @@ -14,19 +14,18 @@ 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, this, s, width, prec, stream, arg */ struct _PDCLIB_status_t status; status.base = 0; status.flags = 0; status.n = n; status.i = 0; - status.this = 0; + status.current = 0; status.s = s; status.width = 0; 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;