printsbuf.c revision 7c478bd95313f5f23a4c958a745db2134aa03244
#ifdef IPFILTER_SCAN
#include <ctype.h>
#include <stdio.h>
#include "ipf.h"
#include "netinet/ip_scan.h"
void printsbuf(buf)
char *buf;
{
u_char *s;
int i;
for (s = (u_char *)buf, i = ISC_TLEN; i; i--, s++) {
if (isprint(*s))
putchar(*s);
else
printf("\\%o", *s);
}
}
#endif