1 //===-- llvm/Support/TarWriter.h - Tar archive file creator -----*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_SUPPORT_TAR_WRITER_H
10 #define LLVM_SUPPORT_TAR_WRITER_H
12 #include "llvm/ADT/StringRef.h"
13 #include "llvm/ADT/StringSet.h"
14 #include "llvm/Support/Error.h"
15 #include "llvm/Support/raw_ostream.h"
20 static Expected
<std::unique_ptr
<TarWriter
>> create(StringRef OutputPath
,
23 void append(StringRef Path
, StringRef Data
);
26 TarWriter(int FD
, StringRef BaseDir
);