summaryrefslogtreecommitdiff
path: root/archivers/libarchive/files/doc/text/archive_entry_misc.3.txt
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/libarchive/files/doc/text/archive_entry_misc.3.txt')
-rw-r--r--archivers/libarchive/files/doc/text/archive_entry_misc.3.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/archivers/libarchive/files/doc/text/archive_entry_misc.3.txt b/archivers/libarchive/files/doc/text/archive_entry_misc.3.txt
new file mode 100644
index 00000000000..d6d888ad674
--- /dev/null
+++ b/archivers/libarchive/files/doc/text/archive_entry_misc.3.txt
@@ -0,0 +1,36 @@
+ARCHIVE_ENTRY_MISC(3) BSD Library Functions Manual ARCHIVE_ENTRY_MISC(3)
+
+NAME
+ archive_entry_symlink_type, archive_entry_set_symlink_type — miscella‐
+ neous functions for manipulating properties of archive_entry.
+
+LIBRARY
+ Streaming Archive Library (libarchive, -larchive)
+
+SYNOPSIS
+ #include <archive_entry.h>
+
+ int
+ archive_entry_symlink_type(struct archive_entry *a);
+
+ void
+ archive_entry_set_symlink_type(struct archive_entry *a, int);
+
+DESCRIPTION
+ The function archive_entry_symlink_type() returns and the function
+ archive_entry_set_symlink_type() sets the type of the symbolic link
+ stored in an archive entry. These functions have special meaning on oper‐
+ ating systems that support multiple symbolic link types (e.g. Microsoft
+ Windows).
+
+ Supported values are:
+ AE_SYMLINK_TYPE_UNDEFINED Symbolic link target type is not defined (de‐
+ fault on unix systems)
+ AE_SYMLINK_TYPE_FILE Symbolic link points to a file
+ AE_SYMLINK_TYPE_DIRECTORY Symbolic link points to a directory
+
+SEE ALSO
+ archive_entry(3), archive_entry_paths(3), archive_entry_stat(3),
+ libarchive(3)
+
+BSD April 15, 2019 BSD