Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in misra

Is there a MISRA-compliant way to use enum flags in C99?

c standards misra

defined macro '__CCP_H__' is reserved to the compiler [MISRA 2012 Rule 21.1, required]

c misra

Am I allowed to choose to disable these two MISRA rules: one statement per function and mandatory function prototypes?

c misra

Misra violation with bitwise operator

c misra

State Machine with no function pointer

MISRA C 2012 Rule 15.4 and replacing goto's with break's

c misra

How to resolve this MISRA warning: C++

c++ misra

MISRA C:2012 Rule 14.4

c misra

Why MISRA-C disallow implicitly widening a type in some circumstances?

c type-conversion misra

MISRA C++ 2008 Rule 5-2-7 violation: An object with pointer type shall not be converted to an unrelated pointer type, either directly or indirectly

Bypass the warning: "Control variable is not modified inside the loop"

c while-loop misra

Document MISRA/QA-C message suppression with Doxygen

c embedded doxygen misra

How to encode East-European (Polish) signs using simple escape sequences?

How are integer types converted implicitly?

c misra

Misra violation 12.6

Should a function prototype always be in its header file?

c header prototype extern misra

Expression assigned to a wider essential type

c lint misra

rationale behind Misra 2012 not allowing cast between different pointers

c misra

When should I use UINT32_C(), INT32_C(),... macros in C?

c fixed-width misra uint32-t

What's the difference between "dead code" and "unreachable code"?