mirror of
https://github.com/wiiu-env/MochaPayload.git
synced 2025-01-08 06:10:43 +01:00
18 lines
241 B
C
18 lines
241 B
C
#ifndef __UTILS_H_
|
|
#define __UTILS_H_
|
|
|
|
#include <malloc.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//Need to have log_init() called beforehand.
|
|
void dumpHex(const void *data, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __UTILS_H_
|