Files
ylib/include/base/typedef.h
2024-05-29 00:00:47 +08:00

15 lines
397 B
C

#pragma once
/***************************************************[类型]***************************************************/
typedef int int32;
typedef unsigned int uint32;
typedef long long int64;
typedef unsigned long long uint64;
typedef unsigned long ulong;
typedef unsigned short ushort;
typedef int64 llong;
typedef uint64 ullong;
typedef unsigned char uchar;
typedef int64 timestamp;