mirror of
https://github.com/0intro/wmii
synced 2025-04-03 04:02:51 +03:00
22 lines
306 B
C
22 lines
306 B
C
#include "fmtdef.h"
|
|
|
|
void
|
|
vseprint(Fmt *f, char *buf, char *e) {
|
|
Fmt f;
|
|
|
|
if(e <= buf)
|
|
return nil;
|
|
f.runes = 0;
|
|
f.start = buf;
|
|
f.to = buf;
|
|
f.stop = e - 1;
|
|
f.flush = 0;
|
|
f.farg = nil;
|
|
f.nfmt = 0;
|
|
va_copy(f.args,args);
|
|
dofmt(&f, fmt);
|
|
va_end(f.args);
|
|
*(char*)f.to = '\0';
|
|
return (char*)f.to;
|
|
}
|