9 lines
162 B
C
9 lines
162 B
C
#ifndef HEXDUMP_HEADER
|
|
#define HEXDUMP_HEADER
|
|
|
|
|
|
#include "stddef.h"
|
|
#include "stdint.h"
|
|
void hexdump (const char *label, const uint8_t *data, size_t len);
|
|
|
|
#endif |