9 lines
130 B
C
9 lines
130 B
C
|
#ifndef _HEXDUMP_H_
|
||
|
#define _HEXDUMP_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void hexdump (char *src, uint32_t len, uint32_t base_addr);
|
||
|
|
||
|
#endif
|