NetBSD/bin/ps/fmt.c

56 lines
815 B
C
Raw Normal View History

1995-05-21 17:38:25 +04:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <vis.h>
1997-07-21 00:37:53 +04:00
#include <sys/resource.h>
#include "ps.h"
#include "extern.h"
1995-05-21 17:38:25 +04:00
void
fmt_puts(s, leftp)
char *s;
int *leftp;
{
static char *v = 0, *nv;
static int maxlen = 0;
int len;
if (*leftp == 0)
return;
len = strlen(s) * 4 + 1;
if (len > maxlen) {
if (maxlen == 0)
maxlen = getpagesize();
while (len > maxlen)
maxlen *= 2;
nv = realloc(v, maxlen);
if (nv == 0)
return;
v = nv;
}
strvis(v, s, VIS_TAB | VIS_NL | VIS_CSTYLE);
if (*leftp != -1) {
len = strlen(v);
if (len > *leftp) {
1995-05-25 07:14:37 +04:00
v[*leftp] = '\0';
1995-05-21 17:38:25 +04:00
*leftp = 0;
1995-05-25 07:14:37 +04:00
} else
1995-05-21 17:38:25 +04:00
*leftp -= len;
1995-05-25 07:14:37 +04:00
}
printf("%s", v);
1995-05-21 17:38:25 +04:00
}
void
fmt_putc(c, leftp)
int c;
int *leftp;
{
if (*leftp == 0)
return;
if (*leftp != -1)
*leftp -= 1;
putchar(c);
}