mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 15:20:55 -04:00
13 lines
181 B
C
13 lines
181 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;
|
|
|
|
#endif
|