summaryrefslogtreecommitdiffstats
path: root/ossfuzz/testinput.h
blob: 0e50a3c1d823b7fd1fc0aaac57e51b8eb75fa0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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