Move fuzzing code to fuzz/ subdirectory, improve Makefile.in

This commit is contained in:
Matt Johnston
2020-10-23 23:10:20 +08:00
parent 1a208c460b
commit f37def57b0
15 changed files with 17 additions and 35 deletions

View File

@@ -0,0 +1,6 @@
#include "fuzz.h"
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
return fuzz_run_client(Data, Size, 1);
}