aboutsummaryrefslogtreecommitdiff
path: root/client/xxd.h
blob: fb28bb14930bd208ba4dd31d083d9623bd83f8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

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

#ifdef __cplusplus
}
#endif