aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@FreeBSD.org>2004-07-05 18:11:44 +0000
committerTim Kientzle <kientzle@FreeBSD.org>2004-07-05 18:11:44 +0000
commitf586f10d0d5fb1b99f24d805bc845a44362ec863 (patch)
tree898442ea20e803fdf4ac341967c52c7acecebe44
parent7228b0c18b37ea7900090cc6a65a85fc848e7723 (diff)
Add convenience functions to retrieve the atime fields directly,
without having to first pull the stat structure.
Notes
Notes: svn path=/head/; revision=131640
-rw-r--r--lib/libarchive/archive_entry.36
-rw-r--r--lib/libarchive/archive_entry.c12
-rw-r--r--lib/libarchive/archive_entry.h2
3 files changed, 20 insertions, 0 deletions
diff --git a/lib/libarchive/archive_entry.3 b/lib/libarchive/archive_entry.3
index 929456cb63c2..026444ee8a12 100644
--- a/lib/libarchive/archive_entry.3
+++ b/lib/libarchive/archive_entry.3
@@ -36,6 +36,8 @@
.Nm archive_entry_acl_next_w ,
.Nm archive_entry_acl_reset ,
.Nm archive_entry_acl_text_w ,
+.Nm archive_entry_atime ,
+.Nm archive_entry_atime_nsec ,
.Nm archive_entry_clear ,
.Nm archive_entry_clone ,
.Nm archive_entry_copy_fflags_text_w ,
@@ -100,6 +102,10 @@
.Fn archive_entry_acl_reset "struct archive_entry *"
.Ft const wchar_t *
.Fn archive_entry_acl_text_w "struct archive_entry *" "int flags"
+.Ft time_t
+.Fn archive_entry_atime "struct archive_entry *"
+.Ft long
+.Fn archive_entry_atime_nsec "struct archive_entry *"
.Ft void
.Fn archive_entry_clear "struct archive_entry *"
.Ft struct archive_entry *
diff --git a/lib/libarchive/archive_entry.c b/lib/libarchive/archive_entry.c
index 0a7611454c4f..f04fee84ed7b 100644
--- a/lib/libarchive/archive_entry.c
+++ b/lib/libarchive/archive_entry.c
@@ -338,6 +338,18 @@ archive_entry_new(void)
* Functions for reading fields from an archive_entry.
*/
+time_t
+archive_entry_atime(struct archive_entry *entry)
+{
+ return (entry->ae_stat.st_atime);
+}
+
+long
+archive_entry_atime_nsec(struct archive_entry *entry)
+{
+ return (ARCHIVE_STAT_ATIME_NANOS(&entry->ae_stat));
+}
+
dev_t
archive_entry_dev(struct archive_entry *entry)
{
diff --git a/lib/libarchive/archive_entry.h b/lib/libarchive/archive_entry.h
index 9feb6d45dd72..96d40f9c552b 100644
--- a/lib/libarchive/archive_entry.h
+++ b/lib/libarchive/archive_entry.h
@@ -64,6 +64,8 @@ struct archive_entry *archive_entry_new(void);
* Retrieve fields from an archive_entry.
*/
+time_t archive_entry_atime(struct archive_entry *);
+long archive_entry_atime_nsec(struct archive_entry *);
dev_t archive_entry_dev(struct archive_entry *);
void archive_entry_fflags(struct archive_entry *,
unsigned long *set, unsigned long *clear);