Merge pull request #9 from mithro/vprintf-fix

libbase: Adding missing vprintf function.
This commit is contained in:
enjoy-digital 2016-10-30 09:43:43 +01:00 committed by GitHub
commit 7bb2be41e8
2 changed files with 12 additions and 6 deletions

View File

@ -16,6 +16,7 @@ extern "C" {
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
int vscnprintf(char *buf, size_t size, const char *fmt, va_list args);
int vsprintf(char *buf, const char *fmt, va_list args);
int vprintf(const char *format, va_list ap);
#ifdef __cplusplus
}

View File

@ -64,17 +64,22 @@ void putsnonl(const char *s)
#define PRINTF_BUFFER_SIZE 256
int printf(const char *fmt, ...)
int vprintf(const char *fmt, va_list args)
{
va_list args;
int len;
char outbuf[PRINTF_BUFFER_SIZE];
va_start(args, fmt);
len = vscnprintf(outbuf, sizeof(outbuf), fmt, args);
va_end(args);
outbuf[len] = 0;
putsnonl(outbuf);
return len;
}
int printf(const char *fmt, ...)
{
int len;
va_list args;
va_start(args, fmt);
len = vprintf(fmt, args);
va_end(args);
return len;
}