blob: b066b58ac1bbba4f1ef49fb9d1d3d7f5b0d27b2a [file] [log] [blame] [raw]
#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