]>
git.saurik.com Git - apple/shell_cmds.git/blob - w/fmt.c
c3606ab7b3378b5a0c0f0183bef13c33d227f451
7 #include <sys/resource.h>
16 static char *v
= 0, *nv
;
17 static int maxlen
= 0;
22 len
= strlen(s
) * 4 + 1;
25 maxlen
= getpagesize();
28 nv
= realloc(v
, maxlen
);
33 strvis(v
, s
, VIS_TAB
| VIS_NL
| VIS_CSTYLE
);