aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/fuzzing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/fuzz/fuzzing.h')
-rw-r--r--src/test/fuzz/fuzzing.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/fuzz/fuzzing.h b/src/test/fuzz/fuzzing.h
new file mode 100644
index 0000000000..aecdbb4e52
--- /dev/null
+++ b/src/test/fuzz/fuzzing.h
@@ -0,0 +1,13 @@
+/* Copyright (c) 2016-2017, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+#ifndef FUZZING_H
+#define FUZZING_H
+
+int fuzz_init(void);
+int fuzz_cleanup(void);
+int fuzz_main(const uint8_t *data, size_t sz);
+
+void disable_signature_checking(void);
+
+#endif /* FUZZING_H */
+