2015-05-23 06:35:31 +08:00
|
|
|
//===- FuzzerInterface.cpp - Mutate a test input --------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Parts of public interface for libFuzzer.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#include "FuzzerInterface.h"
|
|
|
|
#include "FuzzerInternal.h"
|
2016-01-20 04:33:57 +08:00
|
|
|
#include <random>
|
2015-05-23 06:35:31 +08:00
|
|
|
|
|
|
|
namespace fuzzer {
|
2015-07-24 09:06:40 +08:00
|
|
|
|
2016-01-16 08:04:36 +08:00
|
|
|
|
2015-05-23 06:35:31 +08:00
|
|
|
} // namespace fuzzer.
|