From 9f554a72b01705ebf6be66143c5e69b09b3c1372 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 28 Jan 2022 07:33:30 -0300 Subject: Init project: copy files and skeletons from others --- tests/fuzz/hello.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/fuzz/hello.c (limited to 'tests/fuzz/hello.c') diff --git a/tests/fuzz/hello.c b/tests/fuzz/hello.c new file mode 100644 index 0000000..7fbfe07 --- /dev/null +++ b/tests/fuzz/hello.c @@ -0,0 +1,17 @@ +#include +#include +#include + +static bool +fuzz_me(const uint8_t *const data, const size_t size) { + (void)data; + (void)size; + return true; +} + +int +LLVMFuzzerTestOneInput(const uint8_t *const data, const size_t size) { + int rc = 0; + fuzz_me(data, size); + return rc; +} -- cgit v1.2.3