Synopsis: | Use of the ' " \ or /* characters in the #include file sequence <...> or "...", is forbidden. |
Language: | C |
Severity Level: | 3 |
Category: | PREPROCESSING |
Description: |
These characters in the file name can cause undefined behaviour.
Example: /* defs is not a comment, but is not defined either */ #include <header.h/*defs*/> |