#pragma once bool read_file(std::string_view path, std::vector& buffer); bool read_file(std::string_view path, std::string& buffer); bool write_file(std::string_view path, const std::vector& buffer); bool write_file(std::string_view path, const std::string& buffer); std::string_view physfs_error(void);