Fumofumotris/source/fumotris.h

16 lines
298 B
C
Raw Normal View History

2024-03-25 05:34:59 +00:00
#pragma once
#include <stdint.h>
#define nullptr ((void*)0)
typedef uint8_t u8;
typedef uint_fast8_t u8f;
typedef uint16_t u16;
typedef uint_fast16_t u16f;
typedef uint32_t u32;
typedef uint_fast32_t u32f;
typedef uint64_t u64;
2024-04-02 20:06:14 +00:00
typedef uint_fast64_t u64f;