mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
9 lines
223 B
C
9 lines
223 B
C
|
#ifndef EXOSPHERE_UTILS_H
|
||
|
#define EXOSPHERE_UTILS_H
|
||
|
|
||
|
void panic(void);
|
||
|
|
||
|
unsigned int read32le(const unsigned char *dword, unsigned int offset);
|
||
|
unsigned int read32be(const unsigned char *dword, unsigned int offset);
|
||
|
|
||
|
#endif
|