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