| 625 | } |
| 626 | |
| 627 | bool appendFile(const std::string& path, const std::string& data) |
| 628 | { |
| 629 | return appendFile(path, reinterpret_cast<const unsigned char*>(data.c_str()), data.size()); |
| 630 | } |
| 631 | |
| 632 | bool appendFile(const std::string& path, const unsigned char* data, size_t dataLength) |
| 633 | { |
no test coverage detected