1 // This file is distributed under the University of Illinois Open Source 2 // License. See LICENSE.TXT for details. 3 4 // Test that we can find the minimal item in the corpus (3 bytes: "FUZ"). 5 #include <cstddef> 6 #include <cstdint> 7 #include <cstdio> 8 #include <cstdlib> 9 #include <cstring> 10 11 static volatile int Sink; 12 13 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { 14 if (Size < 2) return 0; 15 if (Data[0] == 'F' && Data[Size / 2] == 'U' && Data[Size - 1] == 'Z') 16 Sink++; 17 return 0; 18 } 19 20