mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-21 22:30:57 +00:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mvadari <8029314+mvadari@users.noreply.github.com> Co-authored-by: Mayukha Vadari <mvadari@ripple.com> Co-authored-by: Mayukha Vadari <mvadari@gmail.com> Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: mathbunnyru <12270691+mathbunnyru@users.noreply.github.com>
19 lines
345 B
C++
19 lines
345 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
|