untitled/include/utils.hpp
2025-07-12 02:12:46 +01:00

11 lines
148 B
C++

#ifndef UTILS_HPP
#define UTILS_HPP
// Includes
#include <fstream>
#include <iostream>
// Function
char* read_file(const char* file_path);
#endif