blob: d2e396bcf22e44d726acf84d0bf35984d2b53031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <cstdint>
#include <filesystem>
#include <string>
#include <vector>
namespace unicode::File {
std::string getFile(const std::filesystem::path& filename);
void setFile(const std::filesystem::path& filename, const std::string& s);
}
|