comparison fuzz/fuzzer-preauth.c @ 1756:d5680e12ac33

Move fuzzing code to fuzz/ subdirectory, improve Makefile.in
author Matt Johnston <matt@ucc.asn.au>
date Fri, 23 Oct 2020 23:10:20 +0800
parents fuzzer-preauth.c@a90fdd2d2ed8
children 97ad26e397a5
comparison
equal deleted inserted replaced
1753:7c0fcd19e492 1756:d5680e12ac33
1 #include "fuzz.h"
2
3 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
4 return fuzz_run_preauth(Data, Size, 0);
5 }
6