puzzlebox
Loading...
Searching...
No Matches
xxd.h
1#pragma once
2
3#include <stddef.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
19void xxd(const char * data, size_t size);
20
22
23#ifdef __cplusplus
24}
25#endif
void xxd(const char *data, size_t size)
utility function that prints hexdump of data
Definition xxd.c:6