9 lines
217 B
C
9 lines
217 B
C
|
#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);
|
||
|
}
|