view fuzz/fuzzer-client_nomaths.c @ 1846:39a27a02f1ae

disable fuzzstandalone github action for now, needs debugging
author Matt Johnston <matt@ucc.asn.au>
date Mon, 18 Oct 2021 23:36:23 +0800
parents d5680e12ac33
children
line wrap: on
line source

#include "fuzz.h"

int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
	return fuzz_run_client(Data, Size, 1);
}