]> git.ipfire.org Git - thirdparty/util-linux.git/blob - include/fuzz.h
Merge branch 'lsfd--bpf-name#in-flight' of https://github.com/masatake/util-linux
[thirdparty/util-linux.git] / include / fuzz.h
1 /*
2 * No copyright is claimed. This code is in the public domain; do with
3 * it what you wish.
4 */
5 #ifndef UTIL_LINUX_FUZZ_H
6 #define UTIL_LINUX_FUZZ_H
7
8 #include <stddef.h>
9 #include <stdint.h>
10
11 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
12
13 #endif /* UTIL_LINUX_FUZZ_H */