mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 02:28:09 +00:00
added man pages
This commit is contained in:
@ -563,7 +563,7 @@ int main(int argc, char** argv) {
|
||||
|
||||
doc_path = access(DOC_PATH, F_OK) ? "docs" : DOC_PATH;
|
||||
|
||||
while ((opt = getopt(argc, argv, "+o:m:t:A:eqZQUbcr")) > 0)
|
||||
while ((opt = getopt(argc, argv, "+o:m:t:A:eqZQUbcrh")) > 0)
|
||||
|
||||
switch (opt) {
|
||||
|
||||
@ -691,6 +691,11 @@ int main(int argc, char** argv) {
|
||||
if (edges_only) FATAL("-e and -r are mutually exclusive");
|
||||
raw_instr_output = 1;
|
||||
break;
|
||||
|
||||
case 'h':
|
||||
usage(argv[0]);
|
||||
return -1;
|
||||
break;
|
||||
|
||||
default: usage(argv[0]);
|
||||
|
||||
|
Reference in New Issue
Block a user