| 86 | } |
| 87 | |
| 88 | void AppendToFile(const std::string &Data, const std::string &Path) { |
| 89 | AppendToFile(reinterpret_cast<const uint8_t *>(Data.data()), Data.size(), |
| 90 | Path); |
| 91 | } |
| 92 | |
| 93 | void AppendToFile(const uint8_t *Data, size_t Size, const std::string &Path) { |
| 94 | FILE *Out = fopen(Path.c_str(), "a"); |
no test coverage detected