mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-06 13:15:08 +01:00
f02d7da869
Remove some features (kernel, function patcher) to be a userland only lib.
18 lines
242 B
C
18 lines
242 B
C
#ifndef __UTILS_H_
|
|
#define __UTILS_H_
|
|
|
|
#include <malloc.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//Needs to have log_init() called beforehand.
|
|
void dumpHex(const void* data, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __UTILS_H_
|