This commit is contained in:
2026-06-26 00:30:13 +02:00
commit b27cd76ca8
122 changed files with 37290 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef HEXDUMP_HEADER
#define HEXDUMP_HEADER
#include "stddef.h"
#include "stdint.h"
void hexdump (const char *label, const uint8_t *data, size_t len);
void hexdump_compact(const uint8_t* data, size_t len, char* out, size_t out_size);
#endif