20 lines
276 B
C
20 lines
276 B
C
#ifndef BASE_CORE_H
|
|
#define BASE_CORE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef int32_t S32;
|
|
typedef uint32_t U32;
|
|
typedef int64_t S64;
|
|
typedef uint64_t U64;
|
|
typedef float F32;
|
|
typedef double F64;
|
|
|
|
|
|
#define global static
|
|
#define function static
|
|
|
|
|
|
#endif /* BASE_CORE_H */
|
|
|