MISRA C 2004和c99

时间:2013-01-15 14:36:12

标签: c c99 misra stdint stdbool

MISRA C 2004规则1.1规定该规范涵盖c90而非c99。

我想使用stdint和stdbool库而不是编写自己的库。有没有人在他们的MISRA实施中做出这个例外?

1 个答案:

答案 0 :(得分:3)

您绝对应该使用stdint.h中的类型名称。这就是我以符合MISRA-C:2004标准的方式解决它的方法:

#ifdef __STDC_VERSION__ 
  #if (__STDC_VERSION__ >= 199901L)  /* C99 or later? */
    #include <stdint.h>
    #include <stdbool.h>
  #else
    #define C90_COMPILER
  #endif /* #if (__STDC_VERSION__ >= 199901L) */
#else
  #define C90_COMPILER
#endif /* __STDC_VERSION__  */


#ifdef C90_COMPILER
  typedef unsigned char uint8_t;
  typedef unsigned int  uint16_t;
  typedef unsigned long uint32_t;
  typedef signed char   int8_t;
  typedef signed int    int16_t;
  typedef signed long   int32_t;

  #ifndef BOOL
    #ifndef FALSE
      #define FALSE 0u
      #define false 0u
      #define TRUE  1u
      #define true  1u
    #endif

    typedef uint8_t BOOL;
    typedef uint8_t bool;
  #endif
#endif /* C90_COMPILER */