X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2Fvsnprintf.c;fp=functions%2Fstdio%2Fvsnprintf.c;h=dee30dcea6f5e7b202fea93494d580d0de7da11b;hp=4dbd7c27cfb03679a366558346ddb8d942b6bf8c;hb=81af09721ed3ac131915e24ce9af5af447ed1553;hpb=0c08c23f78be9c54c895fcae0582cc579ef2f50c diff --git a/functions/stdio/vsnprintf.c b/functions/stdio/vsnprintf.c index 4dbd7c2..dee30dc 100644 --- a/functions/stdio/vsnprintf.c +++ b/functions/stdio/vsnprintf.c @@ -13,20 +13,10 @@ 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; - status.n = n; - status.i = 0; - status.current = 0; - status.s = s; - status.width = 0; - status.prec = 0; - status.stream = NULL; + /* 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 }; va_copy( status.arg, arg ); - // = { 0, 0, n, 0, 0, s, 0, 0, NULL }; + while ( *format != '\0' ) { const char * rc;