ARCHIVE_ENTRY_PATHS(3) manual page
== NAME ==
'''archive_entry_hardlink''',
'''archive_entry_hardlink_w''',
'''archive_entry_set_hardlink''',
'''archive_entry_copy_hardlink''',
'''archive_entry_copy_hardlink_w''',
'''archive_entry_update_hardlink_utf8''',
'''archive_entry_set_link''',
'''archive_entry_copy_link''',
'''archive_entry_copy_link_w''',
'''archive_entry_update_link_utf8''',
'''archive_entry_pathname''',
'''archive_entry_pathname_w''',
'''archive_entry_set_pathname''',
'''archive_entry_copy_pathname''',
'''archive_entry_copy_pathname_w''',
'''archive_entry_update_pathname_utf8''',
'''archive_entry_sourcepath''',
'''archive_entry_copy_sourcepath''',
'''archive_entry_symlink''',
'''archive_entry_symlink_w''',
'''archive_entry_set_symlink''',
'''archive_entry_copy_symlink''',
'''archive_entry_copy_symlink_w''',
'''archive_entry_update_symlink_utf8'''
- functions for manipulating path names in archive entry descriptions
== LIBRARY ==
Streaming Archive Library (libarchive, -larchive)
== SYNOPSIS ==
'''
''const char *''
'''archive_entry_hardlink'''(''struct archive_entry *a'');
''const wchar_t *''
'''archive_entry_hardlink_w'''(''struct archive_entry *a'');
''void''
'''archive_entry_set_hardlink'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_hardlink'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_hardlink_w'''(''struct archive_entry *a '', ''const'', ''wchar_t'', ''*path"'');
''int''
'''archive_entry_update_hardlink_utf8'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_set_link'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_link'''(''struct archive_entry *a'', '' const char *path'');
''void''
'''archive_entry_copy_link_w'''(''struct archive_entry *a'', '' const wchar_t *path'');
''int''
'''archive_entry_update_link_utf8'''(''struct archive_entry *a'', '' const char *path'');
''const char *''
'''archive_entry_pathname'''(''struct archive_entry *a'');
''const wchar_t *''
'''archive_entry_pathname_w'''(''struct archive_entry *a'');
''void''
'''archive_entry_set_pathname'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_pathname'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_pathname_w'''(''struct archive_entry *a'', ''const wchar_t *path'');
''int''
'''archive_entry_update_pathname_utf8'''(''struct archive_entry *a'', ''const char *path'');
''const char *''
'''archive_entry_sourcepath'''(''struct archive_entry *a'');
''void''
'''archive_entry_copy_sourcepath'''(''struct archive_entry *a'', ''const char *path'');
''const char *''
'''archive_entry_symlink'''(''struct archive_entry *a'');
''const wchar_t *''
'''archive_entry_symlink_w'''(''struct archive_entry *a'');
''void''
'''archive_entry_set_symlink'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_symlink'''(''struct archive_entry *a'', ''const char *path'');
''void''
'''archive_entry_copy_symlink_w'''(''struct archive_entry *a'', ''const wchar_t *path'');
''int''
'''archive_entry_update_symlink_utf8'''(''struct archive_entry *a'', ''const char *path'');
== DESCRIPTION ==
Path names supported by
[[ManPagerchiventry3]]: