基本数据类型定义

2022/1/24 6:04:41

本文主要是介绍基本数据类型定义,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

//基本数据类型定义
typedef unsigned long	 	RTCbool;
typedef unsigned char	    RTCbyte;
typedef long			    RTCint;
typedef	unsigned long	    RTCuint;
#if defined(_SOLARIS) || defined(_HPUNIX) || defined(_AIX) || defined(_LINUX)
typedef unsigned long long  RTC2uint;
#else
typedef unsigned __int64    RTC2uint;
#endif
typedef float			    RTCfloat;
typedef	double			    RTCdouble;
typedef unsigned char*      RTCbyteArray;
typedef	long*			    RTCintArray;
typedef unsigned long*      RTCuintArray;
typedef RTC2uint*		RTC2uintArray;
typedef float*			    RTCfloatArray;
typedef double*			    RTCdoubleArray;

  



这篇关于基本数据类型定义的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程