1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<!-- Creator : groff version 1.23.0 -->
<!-- CreationDate: Mon Jan 5 10:42:43 2026 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<meta name="Content-Style" content="text/css">
<style type="text/css">
p { margin-top: 0; margin-bottom: 0; vertical-align: top }
pre { margin-top: 0; margin-bottom: 0; vertical-align: top }
table { margin-top: 0; margin-bottom: 0; vertical-align: top }
h1 { text-align: center }
</style>
<title></title>
</head>
<body>
<hr>
<p><i>ARCHIVE_ENTRY_MISC</i>(3) Library Functions Manual
<i>ARCHIVE_ENTRY_MISC</i>(3)</p>
<p style="margin-top: 1em"><b>NAME</b></p>
<p style="margin-left:9%;">archive_entry_symlink_type,
archive_entry_set_symlink_type — miscellaneous
functions for manipulating properties of archive_entry</p>
<p style="margin-top: 1em"><b>LIBRARY</b></p>
<p style="margin-left:9%;">Streaming Archive Library
(libarchive, -larchive)</p>
<p style="margin-top: 1em"><b>SYNOPSIS</b></p>
<p style="margin-left:9%;"><b>#include
<archive_entry.h></b></p>
<p style="margin-left:9%; margin-top: 1em"><i>int</i></p>
<p style="margin-left:14%;"><b>archive_entry_symlink_type</b>(<i>struct archive_entry *a</i>);</p>
<p style="margin-left:9%; margin-top: 1em"><i>void</i></p>
<p style="margin-left:14%;"><b>archive_entry_set_symlink_type</b>(<i>struct archive_entry *a</i>,
<i>int</i>);</p>
<p style="margin-top: 1em"><b>DESCRIPTION</b></p>
<p style="margin-left:9%;">The function
<b>archive_entry_symlink_type</b>() returns and the function
<b>archive_entry_set_symlink_type</b>() sets the type of the
symbolic link stored in an archive entry. These functions
have special meaning on operating systems that support
multiple symbolic link types (e.g. Microsoft Windows).</p>
<p style="margin-left:9%; margin-top: 1em">Supported values
are:</p>
<p>AE_SYMLINK_TYPE_UNDEFINED</p>
<p style="margin-left:44%; margin-top: 1em">Symbolic link
target type is not defined (default on unix systems)</p>
<p>AE_SYMLINK_TYPE_FILE</p>
<p style="margin-left:44%; margin-top: 1em">Symbolic link
points to a file</p>
<p>AE_SYMLINK_TYPE_DIRECTORY</p>
<p style="margin-left:44%; margin-top: 1em">Symbolic link
points to a directory</p>
<p style="margin-top: 1em"><b>SEE ALSO</b></p>
<p style="margin-left:9%;"><i>archive_entry</i>(3),
<i>archive_entry_paths</i>(3), <i>archive_entry_stat</i>(3),
<i>libarchive</i>(3) Debian April 15, 2019
<i>ARCHIVE_ENTRY_MISC</i>(3)</p>
<hr>
</body>
</html>
|