diff options
author | Roland Reichwein <mail@reichwein.it> | 2021-02-01 16:45:18 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2021-02-01 16:45:18 +0100 |
commit | f34a0aa3a2d46d349a41c0b28939176791c2efbe (patch) | |
tree | 663e5d5fd02cbb9b8f44cc502083f85b5b4d5c17 /src/file.h | |
parent | 611601ec36a5603bc9c94cdac9a307c4bb07c929 (diff) |
Implemented recode and validate tools
Diffstat (limited to 'src/file.h')
-rw-r--r-- | src/file.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/file.h b/src/file.h new file mode 100644 index 0000000..d2e396b --- /dev/null +++ b/src/file.h @@ -0,0 +1,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); + +} |