mirror of
https://github.com/thepigeongenerator/tetris_clone.git
synced 2025-12-17 05:55:46 +01:00
rename types.h to intdef.h, and make some minor changes
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
#pragma once
|
#ifndef INTDEF_H
|
||||||
|
#define INTDEF_H 1
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
typedef unsigned int uint;
|
typedef unsigned int uint;
|
||||||
typedef unsigned long ulong;
|
typedef unsigned long ulong;
|
||||||
typedef unsigned long long ullong;
|
typedef unsigned long long ullong;
|
||||||
typedef signed long long llong;
|
typedef long long llong;
|
||||||
|
|
||||||
typedef int8_t i8;
|
typedef int8_t i8;
|
||||||
typedef int16_t i16;
|
typedef int16_t i16;
|
||||||
@@ -14,3 +15,4 @@ typedef uint8_t u8;
|
|||||||
typedef uint16_t u16;
|
typedef uint16_t u16;
|
||||||
typedef uint32_t u32;
|
typedef uint32_t u32;
|
||||||
typedef uint64_t u64;
|
typedef uint64_t u64;
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user