This project is an attempt to implement a small command-line tool for checking the conformance of programs written in C with some of the rulse of MISRA-C:2004 software development standard.
√ Rule 4.1 (required): Only those escape sequences that are defined in the ISO C standard shall be used.
Permited:
\' \" \? \\ \a \b \f \n \r \t \v \0
Not permited:
\0... octal-digit
\x... hexadecimal-digit
??= ??( ??/ ??) ??' ??< ??! ??> ??-