1 /* $NetBSD: fmt.c,v 1.21 2007/12/12 22:55:43 lukem Exp $ */
4 __RCSID("$NetBSD: fmt.c,v 1.21 2007/12/12 22:55:43 lukem 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
)