mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
29 lines
382 B
C
29 lines
382 B
C
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "ipf.h"
|
|
|
|
|
|
void
|
|
binprint(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);
|
|
}
|