# Functions
CheckCorpus verifies that the types in vals match the expected types provided.
CoordinateFuzzing creates several worker processes and communicates with them to test random inputs that could trigger crashes and expose bugs.
ReadCorpus reads the corpus from the provided dir.
ResetCoverage sets all of the counters for each edge of the instrumented source code to 0.
RunFuzzWorker is called in a worker process to communicate with the coordinator process in order to fuzz random inputs.
SnapshotCoverage copies the current counter values into coverageSnapshot, preserving them for later inspection.
# Structs
CoordinateFuzzingOpts is a set of arguments for CoordinateFuzzing.
CorpusEntry represents an individual input for fuzzing.
MalformedCorpusError is an error found while reading the corpus from the filesystem.