lz4/ossfuzz/testinput.h
2019-06-29 00:23:06 +01:00

16 lines
233 B
C

#ifndef TESTINPUT_H_INCLUDED
#define TESTINPUT_H_INCLUDED
#include <inttypes.h>
#if defined (__cplusplus)
extern "C" {
#endif
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
#if defined(__cplusplus)
}
#endif
#endif