diff options
Diffstat (limited to '')
| -rw-r--r-- | bruiser/bruiser.h | 24 | 
1 files changed, 12 insertions, 12 deletions
diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h index 040fc40..86cccf5 100644 --- a/bruiser/bruiser.h +++ b/bruiser/bruiser.h @@ -116,23 +116,23 @@ struct help  };  help CMDHelp[] = { -  {"help()", "", "display general help", "", ""}, -  {"quit()", "", "quit bruiser", "", ""}, -  {"exit()", "", "quit bruiser", "", ""}, +  {"help()", "", "display general help", "none", "none"}, +  {"quit()", "", "quit bruiser", "none", "none"}, +  {"exit()", "", "quit bruiser", "none", "none"},    {"m0()", "", "bruiser reads the report generated by mutator-lvl0", "", ""}, -  {"hijack()", "hijack main", "runs a specific matcher that replaces the main with a new main", "", ""}, +  {"hijack()", "hijack main", "runs a specific matcher that replaces the main with a new main", "none", "returns the rewritten source code as a string"},    {"clear()", "", "clears the terminal", "", ""}, -  {"shell()", "", "opens up a bash shell inside bruiser", "", ""},    {"history()", "", "prints bruiser's history", "", ""},    {"!", "", "prints the command from history", "", ""}, -  {"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", "", ""}, +  {"Vars()", "lists all variables", "lists all available variable declarations", "none", "returns a string array of the variable declarations"}, +  {"Funcs()", "lists all functions", "lists all available function declarations", "none", "returns a string array of the function declarations"}, +  {"Classess()", "lists all classes", "lists all available class declarations", "none", "returns a string array of the class declarations"}, +  {"Structs()", "lists all structs", "lists all available struct declarations", "none", "returns a string array of the structur declarations"}, +  {"Arrays()", "lists all arrays", "lists all available array declarations", "none", "returns a string array of the array declarations"}, +  {"Unions()", "lists all unions", "lists all available union declarations", "none", "returns a string array of the union declarations"},    {"make()", "runs your make command", "runs your make command", "", ""}, -  {"historysize()", "sets the history size", "sets the history size", "", ""} +  {"historysize()", "sets the history size", "sets the history size", "[uint history_size]", ""}, +  {"showsource()", "sets the history size", "sets the history size", "[uint beginline, uint endline, string filename]", "returns a string array of the returned source file"}  };  /**********************************************************************************************************************/  /**  | 
