1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef CHEWING_FUZZER_COMMON_H #define CHEWING_FUZZER_COMMON_H #include <stddef.h> #include <stdint.h> const uint8_t* fuzz_ptr; const uint8_t* fuzz_input; size_t fuzz_size; int stress_main(int argc, char** argv); #endif