aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libchewing/chewing_fuzzer_common.h
blob: 5032d655cfbea10a3a86af627b3606ac7d0f97b3 (plain)
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