mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 09:58:01 +00:00
Signed-off-by: Bhargava Shastry <bshastry@sec.t-labs.tu-berlin.de> Signed-off-by: Ben Pfaff <blp@ovn.org>
10 lines
164 B
C
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 */
|