added more functions

This commit is contained in:
mmichlol
2026-02-07 11:33:50 +01:00
parent 5fbd0f98a2
commit aa6d16bc52
8 changed files with 264 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
#ifndef PREPROCESSOR_H
#define PREPROCESSOR_H
#include <string>
// G³ówna funkcja preprocesora.
// src: kod Ÿród³owy g³ównego pliku
// basePath: œcie¿ka do folderu, w którym jest g³ówny plik (¿eby wiedzieæ sk¹d braæ lokalne include)
std::string preprocessSource(const std::string& src, const std::string& basePath);
#endif