This commit is contained in:
2025-07-12 02:12:46 +01:00
parent 233cfdc356
commit ce44dfc950
10 changed files with 421 additions and 170 deletions

11
include/utils.hpp Normal file
View File

@@ -0,0 +1,11 @@
#ifndef UTILS_HPP
#define UTILS_HPP
// Includes
#include <fstream>
#include <iostream>
// Function
char* read_file(const char* file_path);
#endif