diff options
author | duneroadrunner <duneroadrunner@gmail.com> | 2017-06-24 12:28:12 +0000 |
---|---|---|
committer | duneroadrunner <duneroadrunner@gmail.com> | 2017-06-24 12:28:12 +0000 |
commit | 6db679ca4b60add207688597e4b3a81dc3d7bb12 (patch) | |
tree | c86c6cde5c095f6dc87c19c77a4c9fcb59b15e97 /bruiser/bruiser.h | |
parent | just added support for the case where pointers are used as range (diff) | |
parent | added a new command, fixed an old one (diff) | |
download | mutator-6db679ca4b60add207688597e4b3a81dc3d7bb12.tar.gz mutator-6db679ca4b60add207688597e4b3a81dc3d7bb12.zip |
Merge branch 'master' of https://github.com/bloodstalker/mutator.git
Diffstat (limited to 'bruiser/bruiser.h')
-rw-r--r-- | bruiser/bruiser.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h index 4c532b3..cf47924 100644 --- a/bruiser/bruiser.h +++ b/bruiser/bruiser.h @@ -131,10 +131,12 @@ help CMDHelp[] = { {"Structs()", "", "lists all available struct declarations", "none", "returns a string array of the structur declarations"}, {"Arrays()", "", "lists all available array declarations", "none", "returns a string array of the array declarations"}, {"Unions()", "", "lists all available union declarations", "none", "returns a string array of the union declarations"}, - {"make()", "", "runs your make command", "", ""}, + {"make()", "make(\"all\")", "runs your make command", "", ""}, {"historysize()", "historysize(200)", "sets the history size", "[uint history_size]", ""}, {"showsource()", "showsource(1,5,\"test.cpp\")", "shows the source code for the given range and filename", "[uint beginline, uint endline, string filename]", "returns a string array of the returned source file"}, - {"extractmutagen()", "extractmutagen(\"test.cpp\")", "runs m0 on the source(s)", "[string]", "pid"} + {"extractmutagen()", "extractmutagen(\"test.cpp\")", "runs m0 on the source(s)", "[string]", "pid"}, + {"strainrecognition()", "", "", "", ""}, + {"setmakepath()", "setmakepath(\"../../myproject\")", "tells bruiser where to execute the make command run from make()", "string", "child pid"} }; /**********************************************************************************************************************/ /** |