print out memory as hexidecimals
#include <suplib/debug.h>void hexdump( FILE *stream, void *buf, size_t length );
FILE *stream
- where to print
void *buf
- the start of memory to dump
size_t length
- the number of bytes to dump
hexdump
will pretty print out a section of memory in base 16.
Diab Jerius