Files
PCCCompiler/PCCcompiler/preprocessor.h
2026-02-07 11:57:44 +01:00

9 lines
191 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