diff options
author | bloodstalker <thabogre@gmail.com> | 2017-06-10 16:07:48 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-06-10 16:07:48 +0000 |
commit | 032b2e6159903c1d4d71584701cf0162e078e84c (patch) | |
tree | 828925568da704fb27a492018400c037c1ced4e9 | |
parent | more commands for auto-completion (diff) | |
download | mutator-032b2e6159903c1d4d71584701cf0162e078e84c.tar.gz mutator-032b2e6159903c1d4d71584701cf0162e078e84c.zip |
updated help
-rw-r--r-- | bruiser/bruiser.h | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h index 46ff224..040fc40 100644 --- a/bruiser/bruiser.h +++ b/bruiser/bruiser.h @@ -116,16 +116,23 @@ struct help }; help CMDHelp[] = { - {"help", "", "display general help", "", ""}, - {"quit", "", "quit bruiser", "", ""}, - {"exit", "", "quit bruiser", "", ""}, - {"m0", "", "bruiser reads the report generated by mutator-lvl0", "", ""}, - {"hijack", "hijack main", "runs a specific matcher that replaces the main with a new main", "", ""}, - {"clear", "", "clears the terminal", "", ""}, - {"shell", "", "opens up a bash shell inside bruiser", "", ""}, - {"history", "", "prints bruiser's history", "", ""}, + {"help()", "", "display general help", "", ""}, + {"quit()", "", "quit bruiser", "", ""}, + {"exit()", "", "quit bruiser", "", ""}, + {"m0()", "", "bruiser reads the report generated by mutator-lvl0", "", ""}, + {"hijack()", "hijack main", "runs a specific matcher that replaces the main with a new main", "", ""}, + {"clear()", "", "clears the terminal", "", ""}, + {"shell()", "", "opens up a bash shell inside bruiser", "", ""}, + {"history()", "", "prints bruiser's history", "", ""}, {"!", "", "prints the command from history", "", ""}, - {"list", "list functions", "lists the names of all available types", "", ""} + {"Vars()", "lists all variables", "lists all available variable declarations", "", ""}, + {"Funcs()", "lists all functions", "lists all available function declarations", "", ""}, + {"Classess()", "lists all classes", "lists all available class declarations", "", ""}, + {"Structs()", "lists all structs", "lists all available struct declarations", "", ""}, + {"Arrays()", "lists all arrays", "lists all available array declarations", "", ""}, + {"Unions()", "lists all unions", "lists all available union declarations", "", ""}, + {"make()", "runs your make command", "runs your make command", "", ""}, + {"historysize()", "sets the history size", "sets the history size", "", ""} }; /**********************************************************************************************************************/ /** |