jak-project/goalc/util/file_io.h
2020-08-22 22:30:12 -04:00

14 lines
338 B
C++

#ifndef JAK1_FILE_IO_H
#define JAK1_FILE_IO_H
#include <string>
#include <vector>
namespace util {
std::string read_text_file(const std::string& path);
std::string combine_path(const std::string& parent, const std::string& child);
std::string combine_path(std::vector<std::string> path);
} // namespace util
#endif // JAK1_FILE_IO_H