h2-mod/src/client/component/filesystem.hpp

8 lines
202 B
C++
Raw Normal View History

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);
bool read_file(const std::string& path, std::string* data);
}