hexdump.[ch]: utility function for dumping memory regions as hex

This commit is contained in:
Imbus 2025-10-01 02:48:32 +02:00
parent f4342ab221
commit 1ed4b57882
3 changed files with 44 additions and 1 deletions

8
kern/libkern/hexdump.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef HEXDUMP_H
#define HEXDUMP_H
#include <stddef.h>
void hexdump(const void *data, size_t size);
#endif // HEXDUMP_H