Update glossary.md

This commit is contained in:
inferno-chromium 2016-11-29 13:06:36 -08:00 committed by GitHub
parent 5de02aa385
commit 067892c4e3
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
Naming things is hard. This page tries to reduce confusion around fuzz-related terminologies.
## Fuzz Target
Or **Target Function**, or **Fuzzing Target Function**, or **Fuzzing Entry Point**.<BR><BR>
Or **Target Function**, or **Fuzzing Target Function**, or **Fuzzing Entry Point**.<BR>
A function to which we apply fuzzing. A [specific signature](http://libfuzzer.info#fuzz-target) is needed for OSS-Fuzz.
Examples: [openssl](https://github.com/openssl/openssl/blob/master/fuzz/x509.c),
[re2](https://github.com/google/re2/blob/master/re2/fuzzing/re2_fuzzer.cc),