blob: 1b0dbd2689912c1ba201b3eba93396e5a9f14e2e (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef UTIL_LINUX_FUZZ_H
#define UTIL_LINUX_FUZZ_H
#include <stddef.h>
#include <stdint.h>
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
#endif /* UTIL_LINUX_FUZZ_H */
|