mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-09 08:41:34 +00:00
9 lines
205 B
C#
9 lines
205 B
C#
using SharpFuzz;
|
|
namespace Wrapper {
|
|
public class Program {
|
|
public static void Main(string[] args) {
|
|
Fuzzer.LibFuzzer.Run(stream => { Problems.Problems.Func(stream); });
|
|
}
|
|
}
|
|
}
|