2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 09:58:01 +00:00
ovs/tests/oss-fuzz/fuzzer.h
Bhargava Shastry bef08169da oss-fuzz: Move oss-fuzz test harnesses and fuzzer configs to ovs source repo
Signed-off-by: Bhargava Shastry <bshastry@sec.t-labs.tu-berlin.de>
Signed-off-by: Ben Pfaff <blp@ovn.org>
2018-08-24 13:03:03 -07:00

10 lines
164 B
C

#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 */