mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-20 09:39:18 +01:00
16 lines
178 B
C
16 lines
178 B
C
|
#ifndef _OWN_UTILS_H_
|
||
|
#define _OWN_UTILS_H_
|
||
|
|
||
|
/* Main */
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void dumpHex(const void* data, size_t size);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|