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 "preprocessor.hpp"
5#include <string>
6#include <iostream>
7#include <iomanip>
8#include <cassert>
9#include <filesystem>
10using namespace std;
11
12int main(int argc, char *argv[]){
13 Preprocessor preprocessor(true);
14 return 0;
15}
Codebase preprocessing orchestrator.
Definition json.hpp:5678
Codebase preprocessing interface.
int main(int argc, char *argv[])