aboutsummaryrefslogtreecommitdiffstats
path: root/test/bruisertest/test.cpp
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-11-13 05:42:32 +0000
committerbloodstalker <thabogre@gmail.com>2017-11-13 05:42:32 +0000
commit70966571555434f631842d11975aa14ff12b9cdf (patch)
tree66f53160c56c49893e82aec9aa41da97c7872451 /test/bruisertest/test.cpp
parentadded obfuscator, some minor changes made to load.py so it would be easier to... (diff)
downloadmutator-70966571555434f631842d11975aa14ff12b9cdf.tar.gz
mutator-70966571555434f631842d11975aa14ff12b9cdf.zip
half-way through finishing obfuscator.
Diffstat (limited to '')
-rw-r--r--test/bruisertest/test.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/test/bruisertest/test.cpp b/test/bruisertest/test.cpp
index 2e39dd9..78630e8 100644
--- a/test/bruisertest/test.cpp
+++ b/test/bruisertest/test.cpp
@@ -4,6 +4,17 @@
#include <iostream>
#endif
+int return123(void) {
+ return 123;
+}
+
+int retret(int s, int w) {
+ return s + w;
+}
+
+#define loco 1
+#define puta int
+
namespace devi
{
class LOCO
@@ -28,6 +39,10 @@ int main(int argc, const char **argv)
myfile << "line one.\n";
myfile.close();
#endif
+ int aa = 100;
+ int bb = 28;
+
+ return retret(aa, bb);
- return 0;
+ //return return123();
}