#include <archive_entry.h>void
archive_entry_acl_add_entry(struct archive_entry *, int type, int permset, int tag, int qual, const char *name);
void
archive_entry_acl_add_entry_w(struct archive_entry *, int type, int permset, int tag, int qual, const wchar_t *name);
void
archive_entry_acl_clear(struct archive_entry *);
int
archive_entry_acl_count(struct archive_entry *, int type);
int
archive_entry_acl_next(struct archive_entry *, int want_type, int *type, int *permset, int *tag, int *qual, const char **name);
int
archive_entry_acl_next_w(struct archive_entry *, int want_type, int *type, int *permset, int *tag, int *qual, const wchar_t **name);
int
archive_entry_acl_reset(struct archive_entry *, int want_type);
const wchar_t *
archive_entry_acl_text_w(struct archive_entry *, int flags);
time_t
archive_entry_atime(struct archive_entry *);
long
archive_entry_atime_nsec(struct archive_entry *);
struct archive_entry *
archive_entry_clear(struct archive_entry *);
struct archive_entry *
archive_entry_clone(struct archive_entry *);
const char * *
archive_entry_copy_fflags_text_w(struct archive_entry *, const char *);
const wchar_t *
archive_entry_copy_fflags_text_w(struct archive_entry *, const wchar_t *);
void
archive_entry_copy_gname(struct archive_entry *, const char *);
void
archive_entry_copy_gname_w(struct archive_entry *, const wchar_t *);
void
archive_entry_copy_hardlink(struct archive_entry *, const char *);
void
archive_entry_copy_hardlink_w(struct archive_entry *, const wchar_t *);
void
archive_entry_copy_sourcepath(struct archive_entry *, const char *);
void
archive_entry_copy_pathname_w(struct archive_entry *, const wchar_t *);
void
archive_entry_copy_stat(struct archive_entry *, const struct stat *);
void
archive_entry_copy_symlink(struct archive_entry *, const char *);
void
archive_entry_copy_symlink_w(struct archive_entry *, const wchar_t *);
void
archive_entry_copy_uname(struct archive_entry *, const char *);
void
archive_entry_copy_uname_w(struct archive_entry *, const wchar_t *);
dev_t
archive_entry_dev(struct archive_entry *);
dev_t
archive_entry_devmajor(struct archive_entry *);
dev_t
archive_entry_devminor(struct archive_entry *);
mode_t
archive_entry_filetype(struct archive_entry *);
void
archive_entry_fflags(struct archive_entry *, unsigned long *set, unsigned long *clear);
const char *
archive_entry_fflags_text(struct archive_entry *);
void
archive_entry_free(struct archive_entry *);
const char *
archive_entry_gname(struct archive_entry *);
const char *
archive_entry_hardlink(struct archive_entry *);
ino_t
archive_entry_ino(struct archive_entry *);
mode_t
archive_entry_mode(struct archive_entry *);
time_t
archive_entry_mtime(struct archive_entry *);
long
archive_entry_mtime_nsec(struct archive_entry *);
unsigned int
archive_entry_nlink(struct archive_entry *);
struct archive_entry *
archive_entry_new(void);
const char *
archive_entry_pathname(struct archive_entry *);
const wchar_t *
archive_entry_pathname_w(struct archive_entry *);
dev_t
archive_entry_rdev(struct archive_entry *);
dev_t
archive_entry_rdevmajor(struct archive_entry *);
dev_t
archive_entry_rdevminor(struct archive_entry *);
void
archive_entry_set_dev(struct archive_entry *, dev_t);
void
archive_entry_set_devmajor(struct archive_entry *, dev_t);
void
archive_entry_set_devminor(struct archive_entry *, dev_t);
void
archive_entry_set_filetype(struct archive_entry *, unsigned int);
void
archive_entry_set_fflags(struct archive_entry *, unsigned long set, unsigned long clear);
void
archive_entry_set_gid(struct archive_entry *, gid_t);
void
archive_entry_set_gname(struct archive_entry *, const char *);
void
archive_entry_set_hardlink(struct archive_entry *, const char *);
void
archive_entry_set_ino(struct archive_entry *, unsigned long);
void
archive_entry_set_link(struct archive_entry *, const char *);
void
archive_entry_set_mode(struct archive_entry *, mode_t);
void
archive_entry_set_mtime(struct archive_entry *, time_t, long nanos);
void
archive_entry_set_nlink(struct archive_entry *, unsigned int);
void
archive_entry_set_pathname(struct archive_entry *, const char *);
void
archive_entry_set_rdev(struct archive_entry *, dev_t);
void
archive_entry_set_rdevmajor(struct archive_entry *, dev_t);
void
archive_entry_set_rdevminor(struct archive_entry *, dev_t);
void
archive_entry_set_size(struct archive_entry *, int64_t);
void
archive_entry_set_symlink(struct archive_entry *, const char *);
void
archive_entry_set_uid(struct archive_entry *, uid_t);
void
archive_entry_set_uname(struct archive_entry *, const char *);
int64_t
archive_entry_size(struct archive_entry *);
const char *
archive_entry_sourcepath(struct archive_entry *);
const struct stat *
archive_entry_stat(struct archive_entry *);
const char *
archive_entry_symlink(struct archive_entry *);
const char *
archive_entry_uname(struct archive_entry *);