view fuzzer-preauth.c @ 1611:0196f4f83fee

avoid extended regex features to avoid caring about sed -r vs -E
author Matt Johnston <matt@ucc.asn.au>
date Tue, 24 Jul 2018 20:19:05 +0800
parents a90fdd2d2ed8
children
line wrap: on
line source

#include "fuzz.h"

int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
	return fuzz_run_preauth(Data, Size, 0);
}