1 /* $NetBSD: fmt.c,v 1.20 2004/03/27 12:44:08 simonb Exp $ */
13 #include <sys/resource.h>
17 fmt_puts(char *s
, int *leftp
)
20 static int maxlen
= 0;
26 len
= strlen(s
) * 4 + 1;
34 nv
= realloc(v
, nlen
);
40 len
= strvis(v
, s
, VIS_TAB
| VIS_NL
| VIS_CSTYLE
);
48 (void)printf("%s", v
);
52 fmt_putc(int c
, int *leftp
)