Abraxas/Misra Home  Table of Contents

Module - m14.html

ABRAXAS SOFTWARE - CodeCheck MISRA Test-Suite Misra-C:1998 Misra-C:2004.

Misra-C Test Suite for Module - m14.c

/* Misra C Enforcement Testing */

Misra C Enforcement Testing */

/* Rule 14: Required */

Rule 14: Required */

/* char should only be used with the signed or unsigned keyword. */

char should only be used with the signed or unsigned keyword. */
#include "misra.h"
static char rule14a ( const char * ) ; /*  RULE 14  */
static signed char rule14b ( const char * ) ; /*  RULE 14  */
static char rule14c ( const signed char * ) ; /*  RULE 14  */
static signed char rule14d ( const signed char * ) ; 
SI_32
rule14 ( void ) 



Function Name: rule14()

{
    
unsigned char u; 
signed char s; 
char c; /*  RULE 14  */
    
    return 1;
    
}

Abraxas/Misra Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck MISRA Test-Suite Misra-C:1998 Misra-C:2004.