summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/lib/binprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/binprint.c')
-rw-r--r--contrib/ipfilter/lib/binprint.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/ipfilter/lib/binprint.c b/contrib/ipfilter/lib/binprint.c
deleted file mode 100644
index 4eb3828..0000000
--- a/contrib/ipfilter/lib/binprint.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2000-2002 by Darren Reed.
- *
- * See the IPFILTER.LICENCE file for details on licencing.
- *
- * $Id: binprint.c,v 1.8.4.1 2006/06/16 17:20:56 darrenr Exp $
- */
-
-#include "ipf.h"
-
-
-void binprint(ptr, size)
-void *ptr;
-size_t size;
-{
- u_char *s;
- int i, j;
-
- for (i = size, j = 0, s = (u_char *)ptr; i; i--, s++) {
- j++;
- printf("%02x ", *s);
- if (j == 16) {
- printf("\n");
- j = 0;
- }
- }
- putchar('\n');
- (void)fflush(stdout);
-}
OpenPOWER on IntegriCloud