jak-project/goalc/util/file_io.h

15 lines
412 B
C
Raw Normal View History

2020-08-22 22:30:12 -04:00
#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);
2020-09-07 13:28:16 -04:00
void write_binary_file(const std::string& name, void* data, size_t size);
2020-08-22 22:30:12 -04:00
} // namespace util
#endif // JAK1_FILE_IO_H