首页 > 其他 > 详细

c data type

时间:2017-03-27 21:04:39      阅读:236      评论:0      收藏:0      [点我收藏+]
#elif define _WIN32
    typedef __int64 int64; //Portable signed long integer 8 bytes          
        typedef int          int32;            
    typedef signed short int int16;             
    typedef char           int8; 

    typedef unsigned __int64 uint64; //Portable unsigned long integer 8 bytes 
        typedef unsigned int     uint32;                
    typedef unsigned short     uint16;                
        typedef unsigned char      uint8;
#else
    typedef long long         int64; //Portable signed long integer 8 bytes
        typedef int          int32;            
    typedef signed short int int16;             
    typedef char           int8; 

    typedef unsigned long long     uint64;//Portable unsigned long integer 8 byte
        typedef unsigned int     uint32;                
    typedef unsigned short     uint16;                
        typedef unsigned char      uint8;
#endif

 

c data type

原文:http://www.cnblogs.com/ILoveOCT/p/6628740.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!