Files
kea/compiler-checks/fuzzing-with-clusterfuzzlite.cc
Andrei Pavel 92d57a18a8
Some checks failed
CodeQL / Analyze (cpp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
[#3732] Switch Clusterfuzzlite to Meson
2025-04-26 22:26:08 +03:00

10 lines
176 B
C++

#include <cstdlib>
int main() {
if (getenv("CIFUZZ") && getenv("FUZZING_ENGINE") && getenv("FUZZING_LANGUAGE")) {
return 0;
} else {
return 1;
}
}