mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Agent-Logs-Url: https://github.com/XRPLF/rippled/sessions/ec2fa57d-2d9c-4388-b4e1-90a40f55b5e8 Co-authored-by: mvadari <8029314+mvadari@users.noreply.github.com>
18 lines
340 B
C++
18 lines
340 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
namespace xrpl {
|
|
|
|
/** Extract a tar archive compressed with lz4
|
|
|
|
@param src the path of the archive to be extracted
|
|
@param dst the directory to extract to
|
|
|
|
@throws runtime_error
|
|
*/
|
|
void
|
|
extractTarLz4(std::filesystem::path const& src, std::filesystem::path const& dst);
|
|
|
|
} // namespace xrpl
|