2022-03-19 18:06:00 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace filesystem
|
|
|
|
{
|
|
|
|
std::unordered_set<std::string>& get_search_paths();
|
|
|
|
std::string read_file(const std::string& path);
|
2022-04-28 16:41:29 -04:00
|
|
|
bool read_file(const std::string& path, std::string* data, std::string* real_path = nullptr);
|
2022-03-19 18:06:00 -04:00
|
|
|
}
|