mirror of
https://github.com/openvswitch/ovs
synced 2025-08-25 19:37:14 +00:00
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 */
|