aboutsummaryrefslogtreecommitdiffstats
path: root/obfuscator/test/test.cpp
blob: 83c55e47dd001caf56a907153a56f7cdc4ea353c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "./header.hpp"
//#include <iostream>

#if 0
#include <fstream>
#include <iostream>
#endif

int return123(void) {
  return 123;
}

int retret(int s, int w) {
  return s + w;
}

#define loco 1
#define puta int

#define PI 3.14

#define INTMAC1 int mac1
#define INTMAC2 int mac2

namespace devi
{
  class LOCO
  {
    public:
      LOCO () {}

      void lupo (void)
      {
        int a = 1;
        int b = 2;
        int c = 3;
      }
  };
}

int main(int argc, const char **argv)
{
  /***hya**/
  /*
   *
   * */
  // /**/
  int bubba; // this one
  int hubba; /*
  *
  */
  /* "//" \\ \\\\ // */
  //std::cout << "//" << "/**/" << "\n";
  int/***/ cucu;
#if 0
  std::ofstream myfile;
  myfile.open("./touch");
  myfile << "line one.\n";
  myfile.close();
#endif
  int aa = 100;
  int bb = 28;
  //std::cout << "maybe i passed the test.";

  INTMAC1;
  INTMAC2;
  retret(mac1, mac2);
  return retret(aa, bb);

  //return return123();
}