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
#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