blob: 44151cb8f6c093560345ac7cab5afd057f22fee6 [file] [log] [blame] [raw]
/*
* Copyright (C) 2000-2007 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include <ctype.h>
#include "ipf.h"
void
printbuf(buf, len, zend)
char *buf;
int len, zend;
{
char *s, c;
int i;
for (s = buf, i = len; i; i--) {
c = *s++;
if (ISPRINT(c))
putchar(c);
else
PRINTF("\\%03o", c);
if ((c == '\0') && zend)
break;
}
}