Arkanjo 0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
preprocessor_main.cpp
Go to the documentation of this file.
1// As preprocessor is, in the moment, separated from orchestrator
2// we define a main function to use it.
3
4#include <bits/stdc++.h>
5#include "preprocessor.hpp"
6using namespace std;
7
8int main(int argc, char *argv[]){
9 Preprocessor preprocessor(true);
10 return 0;
11}
Codebase preprocessing orchestrator.
Codebase preprocessing interface.
int main(int argc, char *argv[])