mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04:00
19 lines
303 B
C
19 lines
303 B
C
#ifndef PH_TYPES_H
|
|
#define PH_TYPES_H
|
|
|
|
typedef unsigned int u32;
|
|
typedef unsigned short u16;
|
|
typedef unsigned char u8;
|
|
|
|
typedef int s32;
|
|
typedef short s16;
|
|
typedef char s8;
|
|
|
|
typedef s8 unk8;
|
|
typedef s16 unk16;
|
|
typedef s32 unk32;
|
|
|
|
#define CEIL_DIV(a, b) (((a) + (b) - 1) / (b))
|
|
|
|
#endif
|