#include "../include/typedefs.h" // Example code from MISRA C:2012 begin /* 1234567890123456789012345678901********* Characters */ int32_t engine_exhaust_gas_temperature_raw; int32_t engine_exhaust_gas_temperature_scaled; /* Non-compliant */ /* 1234567890123456789012345678901********* Characters */ int32_t engine_exhaust_gas_temp_raw; int32_t engine_exhaust_gas_temp_scaled; /* Compliant */ // Example code from MISRA C:2012 end