jak-project/goalc/util/file_io.h
2020-09-07 13:28:16 -04:00

15 lines
412 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);
void write_binary_file(const std::string& name, void* data, size_t size);
} // namespace util
#endif // JAK1_FILE_IO_H