sqc 0.4.13

Software Code Quality - CERT C compliance checker
1
2
3
4
5
6
7
8
9
/*
 * Rule: API03-C
 * Source: wiki
 * Status: FAIL - Should trigger API03-C violation
 */

int fputs(const char * restrict s, FILE * restrict stream);

int fprintf(FILE * restrict stream, const char * restrict format, ...);