drawterm/libc/fmtprint.c

34 lines
510 B
C
Raw Normal View History

2006-01-17 14:22:03 +01:00
#include <u.h>
#include <libc.h>
2005-08-08 14:50:13 +02:00
#include "fmtdef.h"
/*
* format a string into the output buffer
* designed for formats which themselves call fmt,
* but ignore any width flags
*/
int
fmtprint(Fmt *f, char *fmt, ...)
{
va_list va;
int n;
f->flags = 0;
f->width = 0;
f->prec = 0;
2006-01-17 13:37:52 +01:00
VA_COPY(va, f->args);
VA_END(f->args);
2005-08-08 14:50:13 +02:00
va_start(f->args, fmt);
n = dofmt(f, fmt);
va_end(f->args);
f->flags = 0;
f->width = 0;
f->prec = 0;
2006-01-17 13:37:52 +01:00
VA_COPY(f->args,va);
VA_END(va);
2005-08-08 14:50:13 +02:00
if(n >= 0)
return 0;
return n;
}