Files
PCCCompiler/PCCcompiler/preprocessor.h
2026-02-09 20:46:14 +01:00

14 lines
206 B
C++

#ifndef PREPROCESSOR_H
#define PREPROCESSOR_H
#include <string>
std::string preprocessSource(
const std::string& src,
const std::string& projectDir,
const std::string& compilerDir
);
#endif