1
0

debug_util.h 184 B

12345678910
  1. #ifndef DEBUG_UTIL_H
  2. #define DEBUG_UTIL_H
  3. #include <stdint.h>
  4. void memdump(void* start,uint32_t len,int raw);
  5. void printhex(uint32_t num);
  6. void printhex_signed(int32_t num);
  7. #endif