Files
meshcore-wch/User/util/hexdump.h
2025-12-22 23:02:29 +01:00

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