mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-01-05 22:34:05 -05:00
12 lines
200 B
C
Executable File
12 lines
200 B
C
Executable File
#include "decomp.h"
|
|
#include <stdint.h>
|
|
|
|
int set_endian()
|
|
{
|
|
uint32_t integer = 0x000000aa;
|
|
unsigned char *p = (unsigned char*)&integer;
|
|
|
|
if (p[0] == 0xaa) return 0;
|
|
else return 1;
|
|
}
|