From bc6f93782775211a41f02fe4b0319a69f24fd7e0 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Tue, 13 Dec 2016 09:33:59 -0800 Subject: [PATCH] Update ideal_integration.md --- docs/ideal_integration.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/ideal_integration.md b/docs/ideal_integration.md index f0f8828fa..47ab49965 100644 --- a/docs/ideal_integration.md +++ b/docs/ideal_integration.md @@ -16,6 +16,9 @@ Make sure to fuzz the target locally for a small period of time to ensure that it does not crash, hang, or runs out of memory instantly. See details at http://libfuzzer.info and http://tutorial.libfuzzer.info. +The interface between the [fuzz target]((http://libfuzzer.info/#fuzz-target)) +and the fuzzing engines is C, so you may use C or C++ to implement the fuzz target. + Examples: [boringssl](https://github.com/google/boringssl/tree/master/fuzz), [SQLite](https://www.sqlite.org/src/artifact/ad79e867fb504338),