summaryrefslogtreecommitdiffhomepage
path: root/file.h
blob: e7e4cf6bb4492361108e62b4814438485a1522aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <cstdint>
#include <filesystem>
#include <string>
#include <vector>

namespace File {

std::string getFile(const std::filesystem::path& filename);
void setFile(const std::filesystem::path& filename, const std::string& s);
void setFile(const std::filesystem::path& filename, const char* data, size_t size);
void setFile(const std::filesystem::path& filename, const std::vector<uint8_t>& data);

}