blob: 0bc728df65c13ea975e5ea796c703690c6121655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* No copyright is claimed. This code is in the public domain; do with
* it what you wish.
*/
#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 */
|