Abraxas/Misra Home Table of Contents
#include "misra.h"
extern SI_32 func33 ( void ) ;
SI_32
rule33 ( void )
Function Name: rule33()
{SI_32 a = 3;SI_32 b = 3;SI_32 c = 3;if ( ( a == 3 ) && b++ ) /* RULE 33 */{c = 1;}if ( ( a == 3 ) || b++ ) /* RULE 33 */{c = 1;}if ( ( a == 3 ) || func33 ( ) ) /* ???? */{c = 1;}return c;
}
Abraxas/Misra Home Table of Contents