aboutsummaryrefslogtreecommitdiff
path: root/client/xxd.h
blob: ede9fffa67bff10fa8e81eeb93703841d8f369d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * \ingroup pbc
 * \defgroup pbc_xxd xxd
 * \brief Utility hexdump
 * \{
 */

/**
 * \brief utility function that prints hexdump of data
 */
void xxd(const char * data, size_t size);

/// \}

#ifdef __cplusplus
}
#endif