add hexdump utility

This commit is contained in:
DH 2024-09-01 18:04:55 +03:00
parent 83ee2942fc
commit 26ffd8cbb2
3 changed files with 94 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#pragma once
#include <cstddef>
#include <span>
namespace rx {
void hexdump(std::span<std::byte> bytes);
} // namespace rx