summaryrefslogtreecommitdiff
path: root/tests/oss-fuzz/fuzzer.h
blob: f87ae59e918529eedc76c89ba523cff4e5cddd82 (plain)
1
2
3
4
5
6
7
8
9
#ifndef FUZZER_H
#define FUZZER_H 1

#include <stdint.h>
#include <stddef.h>

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);

#endif  /* fuzzer.h */