summaryrefslogtreecommitdiffstats
path: root/include/fuzz.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuzz.h')
-rw-r--r--include/fuzz.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/fuzz.h b/include/fuzz.h
new file mode 100644
index 0000000..0bc728d
--- /dev/null
+++ b/include/fuzz.h
@@ -0,0 +1,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 */