Update ideal_integration.md

This commit is contained in:
Kostya Serebryany 2016-12-13 09:33:59 -08:00 committed by GitHub
parent bb7d8e0a81
commit bc6f937827
1 changed files with 3 additions and 0 deletions

View File

@ -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),