hexdump.[ch]: utility function for dumping memory regions as hex
This commit is contained in:
parent
f4342ab221
commit
1ed4b57882
3 changed files with 44 additions and 1 deletions
8
kern/libkern/hexdump.h
Normal file
8
kern/libkern/hexdump.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue