Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Dir 4.6 Does "plain char" need to be typedeffed
#1
Does Directive 4.6 cover the use of the plain “char” type for the storage and handling of character values?
For example
Code:
const char * string = “some data”;  /* compliant or not ? */
Posted by and on behalf of the MISRA C Working Group
Reply
#2
The numerical types of “char” are “signed char” and “unsigned char”. Plain ”char” is not considered a numerical type by this directive.

It is fine to use the basic type of “char” for handling character values. This is referred to as the “essentially character” type in Appendix D. Likewise the C99 _Bool type is not a numerical type for the purposes of this directive.

It should be noted that "Exception 4" in the guidelines should not be listed as an exception but as a note as it refers to plain “char”.
Posted by and on behalf of the MISRA C Working Group
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)