11 lines
148 B
C++
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 |