conterm/libc/runevseprint.c

26 lines
362 B
C
Raw Normal View History

2006-01-17 16:22:03 +03:00
#include <u.h>
#include <libc.h>
2006-01-17 15:37:52 +03:00
#include "fmtdef.h"
2005-08-08 16:50:13 +04:00
Rune*
runevseprint(Rune *buf, Rune *e, char *fmt, va_list args)
{
Fmt f;
if(e <= buf)
return nil;
f.runes = 1;
f.start = buf;
f.to = buf;
f.stop = e - 1;
2006-05-21 21:02:05 +04:00
f.flush = 0;
2005-08-08 16:50:13 +04:00
f.farg = nil;
f.nfmt = 0;
2006-01-17 15:37:52 +03:00
VA_COPY(f.args,args);
2005-08-08 16:50:13 +04:00
dofmt(&f, fmt);
2006-01-17 15:37:52 +03:00
VA_END(f.args);
2005-08-08 16:50:13 +04:00
*(Rune*)f.to = '\0';
2006-01-17 15:37:52 +03:00
return (Rune*)f.to;
2005-08-08 16:50:13 +04:00
}