From a56cf70a429708a2bcce14fc978481b04dd330fd Mon Sep 17 00:00:00 2001 From: Fabian Meumertzheim Date: Thu, 21 Oct 2021 10:17:38 +0200 Subject: Add ConsumerN, FunctionN and autofuzz methods up to N=5 --- .../code_intelligence/jazzer/autofuzz/Function5.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java (limited to 'agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java') diff --git a/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java b/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java new file mode 100644 index 00000000..1dc00347 --- /dev/null +++ b/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java @@ -0,0 +1,20 @@ +// Copyright 2021 Code Intelligence GmbH +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package com.code_intelligence.jazzer.autofuzz; + +@FunctionalInterface +public interface Function5 { + R apply(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5); +} -- cgit v1.2.3