1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libutil/tarfile.hh

10 lines
169 B
C++
Raw Normal View History

2019-09-11 07:10:46 -04:00
#include "serialise.hh"
namespace nix {
void unpackTarfile(Source & source, const Path & destDir);
2019-12-07 10:35:14 -05:00
void unpackTarfile(const Path & tarFile, const Path & destDir);
2019-09-11 07:10:46 -04:00
}