#include #include #include int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if (Size >= 8 && *(uint32_t *)Data == 0xaabbccdd) { abort(); } char buf[8] = {'a', 'b', 'c', 'd'}; if (memcmp(Data, buf, 4) == 0) { abort(); } return 0; } /* int main() { char buf [10] = {0}; LLVMFuzzerTestOneInput(buf, 10); }*/