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