13 lines
288 B
C
13 lines
288 B
C
/*
|
|
* 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 */
|