conterm/libc/vsnprint.c

25 lines
368 B
C
Raw Permalink 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
int
vsnprint(char *buf, int len, char *fmt, va_list args)
{
Fmt f;
if(len <= 0)
return -1;
f.runes = 0;
f.start = buf;
f.to = buf;
f.stop = buf + len - 1;
2006-01-17 15:37:52 +03: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
*(char*)f.to = '\0';
return (char*)f.to - buf;
}