sapphire/src/FileIO.h

9 lines
217 B
C
Raw Normal View History

#pragma once
#include <string>
namespace FileIO // namespaces are just so neat
{
std::string read_all(const std::string& filename);
void write_all(const std::string& filename, const std::string& contents);
}