From eeda8ef60b8c8040c64b07e44b0be6c92a38c907 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 11 Aug 2005 00:36:51 +0000 Subject: Add support for * width and precision values, and fix potential infinite loop bug... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4504 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/vsnprintf.c | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'src/vsnprintf.c') diff --git a/src/vsnprintf.c b/src/vsnprintf.c index e2f39888e..acf9d6c0a 100644 --- a/src/vsnprintf.c +++ b/src/vsnprintf.c @@ -71,14 +71,26 @@ int fl_vsnprintf(char* buffer, size_t bufsize, const char* format, va_list ap) { } else if (strchr(" -+#\'", *format)) sign = *format++; else sign = 0; - width = 0; - while (isdigit(*format & 255)) width = width * 10 + *format++ - '0'; + if (*format == '*') { + // Get width from argument... + format ++; + width = va_arg(ap, int); + } else { + width = 0; + while (isdigit(*format & 255)) width = width * 10 + *format++ - '0'; + } if (*format == '.') { format ++; - prec = 0; - while (isdigit(*format & 255)) prec = prec * 10 + *format++ - '0'; + if (*format == '*') { + // Get precision from argument... + format ++; + prec = va_arg(ap, int); + } else { + prec = 0; + while (isdigit(*format & 255)) prec = prec * 10 + *format++ - '0'; + } } else prec = -1; if (*format == 'l' && format[1] == 'l') { @@ -236,7 +248,8 @@ int fl_vsnprintf(char* buffer, size_t bufsize, const char* format, va_list ap) { } else { bytes ++; - if (bufptr && bufptr < bufend) *bufptr++ = *format++; + if (bufptr && bufptr < bufend) *bufptr++ = *format; + format ++; } } -- cgit v1.2.3