Method: Archive::Entry#ctime_nsec
- Defined in:
- ext/libarchive-0.1.1/ext/libarchive_entry.c
#ctime_nsec ⇒ Object
100 101 102 103 104 105 |
# File 'ext/libarchive-0.1.1/ext/libarchive_entry.c', line 100
static VALUE rb_libarchive_entry_ctime_nsec(VALUE self) {
struct rb_libarchive_entry_container *p;
Data_Get_Struct(self, struct rb_libarchive_entry_container, p);
Check_Entry(p);
return LONG2NUM(archive_entry_ctime_nsec(p->ae));
}
|