Affected rules
Description
The functions in the <ctype> header can be implemented either by macros or functions, however this query only detects cases where these functions are implemented by a function.
Example
isalpha(c); // This is a macro invocation on gcc and clang
Affected rules
STR37-CDescription
The functions in the
<ctype>header can be implemented either by macros or functions, however this query only detects cases where these functions are implemented by a function.Example