blob: 6476b906ee99ec364bf360848ad4b828efa7a5d5 [file] [log] [blame] [raw]
/*
* Copyright (C) 2002-2008 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#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);
}
}
#else
void printsbuf(char *buf);
void printsbuf(buf)
char *buf;
{
}
#endif