ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
27 lines
710 B
Plaintext
27 lines
710 B
Plaintext
ARCHIVE_WRITE_NEW(3) BSD Library Functions Manual ARCHIVE_WRITE_NEW(3)
|
|
|
|
NAME
|
|
archive_write_new — functions for creating archives
|
|
|
|
LIBRARY
|
|
Streaming Archive Library (libarchive, -larchive)
|
|
|
|
SYNOPSIS
|
|
#include <archive.h>
|
|
|
|
struct archive *
|
|
archive_write_new(void);
|
|
|
|
DESCRIPTION
|
|
Allocates and initializes a struct archive object suitable for writing a
|
|
tar archive. NULL is returned on error.
|
|
|
|
A complete description of the struct archive object can be found in the
|
|
overview manual page for libarchive(3).
|
|
|
|
SEE ALSO
|
|
tar(1), archive_write(3), archive_write_set_options(3), libarchive(3),
|
|
cpio(5), mtree(5), tar(5)
|
|
|
|
BSD February 2, 2012 BSD
|