blob: 42ca337d1fc5b0b28fcbe17ca4d32cd9835b6116 (
plain)
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
|
/* -------------------------------------------
Copyright (C) 2024-2025 Amlal EL Mahrouss, Licensed under Apache 2.0
------------------------------------------- */
/// @file cxxdrv.cc
/// @brief NE frontend preprocessor.
#include <CompilerKit/Defines.h>
#include <CompilerKit/ErrorID.h>
#include <CompilerKit/Version.h>
#include <cstring>
#include <iostream>
#include <vector>
CK_IMPORT_C int CPlusPlusPreprocessorMain(int argc, char const* argv[]);
int main(int argc, char const* argv[]) {
if (auto code = CPlusPlusPreprocessorMain(argc, argv); code > 0) {
std::printf("cppdrv: preprocessor exited with code %i.\n", code);
return NECTI_EXEC_ERROR;
}
return NECTI_SUCCESS;
}
|