Abraxas/Misra Home Table of Contents
#include "misra.h"
static struct s
{
int p_a : 4; /* RULE 111 */
signed int p_b : 4;
unsigned int p_c : 4;
unsigned int p_d : 4;
long p_e : 4; /* RULE 111 */
} st;
static void
func111 ( void )
Function Name: func111()
{st.p_a = 0x1;
}
Abraxas/Misra Home Table of Contents