aboutsummaryrefslogtreecommitdiff
path: root/contrib/ipfilter/lib/printbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/printbuf.c')
-rw-r--r--contrib/ipfilter/lib/printbuf.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/contrib/ipfilter/lib/printbuf.c b/contrib/ipfilter/lib/printbuf.c
deleted file mode 100644
index 4e9236f0d02d..000000000000
--- a/contrib/ipfilter/lib/printbuf.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/* $FreeBSD$ */
-
-/*
- * Copyright (C) 2012 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;
- int 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;
- }
-}