blob: 75defbd2fbdf2f34c13313c8d464df6ff84fcdd3 [file] [log] [blame]
// RUN: %clang_analyze_cc1 -analyzer-checker=alpha.security.taint,debug.TaintTest %s -verify -analyzer-output=sarif -o - | %diff_sarif %S/Inputs/expected-sarif/sarif-diagnostics-taint-test.c.sarif
#include "../Inputs/system-header-simulator.h"
int atoi(const char *nptr);
void f(void) {
char s[80];
scanf("%s", s);
int d = atoi(s); // expected-warning {{tainted}}
}
int main(void) {
f();
return 0;
}