Source code

Revision control

Copy as Markdown

Other Tools

int f(int *p) __attribute__((nonnull));
void test(int *p) {
if (!p)
f(p); // warn
}