Method: Archive::Entry#gid
- Defined in:
-
ext/libarchive-0.1.1/ext/libarchive_entry.c,
ext/libarchive-0.1.1/libarchive.c
224 225 226 227 228 229 |
# File 'ext/libarchive-0.1.1/ext/libarchive_entry.c', line 224
static VALUE rb_libarchive_entry_gid(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_gid(p->ae));
}
|