Archive-Libarchive-XS
view release on metacpan or search on metacpan
lib/Archive/Libarchive/XS.xs view on Meta::CPAN
struct archive_entry *entry
#endif
=head2 archive_match_path_excluded
my $bool = archive_match_path_excluded($archive, $entry);
Test if pathname is excluded.
=cut
#if HAS_archive_match_path_excluded
int
archive_match_path_excluded(archive, entry)
struct archive *archive
struct archive_entry *entry
#endif
=head2 archive_match_time_excluded
my $bool = archive_match_time_excluded($archive, $entry);
Test if a file is excluded by its time stamp.
=cut
#if HAS_archive_match_time_excluded
int
archive_match_time_excluded(archive, entry)
struct archive *archive
struct archive_entry *entry
#endif
=head2 archive_match_owner_excluded
my $bool = archive_match_owner_excluded($archive, $entry);
Test if a file is excluded by its uid, gid, user name or group name.
=cut
#if HAS_archive_match_owner_excluded
int
archive_match_owner_excluded(archive, entry)
struct archive *archive
struct archive_entry *entry
#endif
=head2 archive_perl_codeset
my $string = archive_perl_codeset();
Returns the name of the "codeset" (character encoding, example: "UTF-8" for
UTF-8 or "ANSI_X3.4-1968" for ASCII) of the currently configured locale.
=cut
#if HAS_archive_perl_codeset
string_or_null
archive_perl_codeset()
#endif
=head2 archive_perl_utf8_mode
my $bool = archive_perl_utf8_mode();
Returns true if the internal "codeset" used by libarchive is UTF-8.
=cut
#if HAS_archive_perl_utf8_mode
int
archive_perl_utf8_mode()
#endif
=head2 archive_entry_acl
my $acl = archive_entry_acl($entry);
Return an opaque ACL object.
There's not yet anything you can actually do with this...
=cut
#if HAS_archive_entry_acl
struct archive_acl *
archive_entry_acl(entry)
struct archive_entry *entry
#endif
=head2 archive_entry_acl_clear
my $status = archive_entry_acl_clear($entry);
removes all ACL entries and resets the enumeration pointer.
=cut
#if HAS_archive_entry_acl_clear
int
archive_entry_acl_clear(entry)
struct archive_entry *entry
CODE:
archive_entry_acl_clear(entry);
RETVAL = ARCHIVE_OK;
OUTPUT:
( run in 3.631 seconds using v1.01-cache-2.11-cpan-5c0b1e786e0 )