zoukankan      html  css  js  c++  java
  • This project fills the absence of stdint.h and inttypes.h in Microsoft Visual Studio

    http://code.google.com/p/msinttypes/

    msinttypes

    This project fills the absence of stdint.h and inttypes.h in Microsoft Visual Studio. This files were standartized by ISO/IEC as a part of C99standard library. If you want to compile or use C99 compliant project with Microsoft Visual Studio, you will likely find that you're missing these headers. Note though, that just adding these header does not make Visual Studio compiler fully C99 compliant.

    FFMpeg is a good example of library that requires inttypes.h even if you just want to link your program with it.

    More portable version of stdint.h can be find here but it does not implement inttypes.h features, such as printf and scanf format specifiers.

     

    C99中添加了几个新的头文件,VC++中没有,所以需要你自己下载

    判断支持C98 或者 C99 代码

    View Code
    #include<stdio.h>
    #include<tchar.h>
    
    //int main()
    //int _tmain(int argc, _TCHAR* argv[])
    int _tmain()
    {
    #if (defined(__STDC_VERSION__))
     printf("标准C版本:%ld。", __STDC_VERSION__);
    #elif (!defined(__STDC__))
     printf("非标准C!");
    #else
     printf("旧的标准C。");
    #endif
     getchar();
     return 0;
    }

    http://blog.csdn.net/rodmanwu/article/details/6846788

    stdint.h是C99的标准,主要用于统一跨平台数据定义。
    MSVC中不带有这个头文件,直到VS2010(新闻)。

    在之前的版本里面,我们可以:
    (1)下载这个头文件
    download a MS version of this header from:
    http://msinttypes.googlecode.com/svn/trunk/stdint.h
    A portable one can be found here:
    http://www.azillionmonkeys.com/qed/pstdint.h
    (2)将头文件放到(以VS2008为例):
    C:\Program Files\Microsoft Visual Studio 9.0\VC\include


    (以VS2011为例): D:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include 需要 inttypes.h

  • 相关阅读:
    47.一个h5画板
    46.纯css实现瀑布流(flex)
    45.使用webpack,react,redux搭俩个界面
    44.一个这样的datePicker
    43.关于浮点数的乘除法预算误差,一个看似没什么问题的解决方法
    iOS10 NSBundle
    iOS09-NSUserDefault
    iOS08 页面跳转动画设置方法
    iOS07 键盘弹出,回收,位置
    iOS06 NSTimer 详细设置1
  • 原文地址:https://www.cnblogs.com/logitechlike/p/2873018.html
Copyright © 2011-2022 走看看