MISRA Discussion Forums

Full Version: Dir 4.6 Does "plain char" need to be typedeffed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 ? */
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”.