2006-01-17 16:22:03 +03:00
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
2005-08-08 16:50:13 +04:00
|
|
|
#include "fmtdef.h"
|
|
|
|
|
|
|
|
/* format the output into f->to and return the number of characters fmted */
|
|
|
|
|
|
|
|
int
|
2006-01-17 15:37:52 +03:00
|
|
|
dorfmt(Fmt *f, const Rune *fmt)
|
2005-08-08 16:50:13 +04:00
|
|
|
{
|
|
|
|
Rune *rt, *rs;
|
|
|
|
int r;
|
|
|
|
char *t, *s;
|
|
|
|
int nfmt;
|
|
|
|
|
|
|
|
nfmt = f->nfmt;
|
|
|
|
for(;;){
|
|
|
|
if(f->runes){
|
|
|
|
rt = f->to;
|
|
|
|
rs = f->stop;
|
|
|
|
while((r = *fmt++) && r != '%'){
|
|
|
|
FMTRCHAR(f, rt, rs, r);
|
|
|
|
}
|
|
|
|
f->nfmt += rt - (Rune *)f->to;
|
|
|
|
f->to = rt;
|
|
|
|
if(!r)
|
|
|
|
return f->nfmt - nfmt;
|
|
|
|
f->stop = rs;
|
|
|
|
}else{
|
|
|
|
t = f->to;
|
|
|
|
s = f->stop;
|
|
|
|
while((r = *fmt++) && r != '%'){
|
|
|
|
FMTRUNE(f, t, f->stop, r);
|
|
|
|
}
|
|
|
|
f->nfmt += t - (char *)f->to;
|
|
|
|
f->to = t;
|
|
|
|
if(!r)
|
|
|
|
return f->nfmt - nfmt;
|
|
|
|
f->stop = s;
|
|
|
|
}
|
|
|
|
|
2006-01-17 15:37:52 +03:00
|
|
|
fmt = __fmtdispatch(f, (Rune*)fmt, 1);
|
2005-08-08 16:50:13 +04:00
|
|
|
if(fmt == nil)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0; /* not reached */
|
|
|
|
}
|