/** * @file * @brief A simple way of dumping memory to a hex output * * \addtogroup Hexdump * * @{ */ #include #define HEX_DUMP_LINE_BUFF_SIZ 16 extern void hex_dump(FILE * fp,void *src, int len); extern void hex_dump_buff_line(FILE *fp, int addr_size, unsigned pos, char *line, unsigned len); /** * }@ */