Method: Archive::Entry#gname=
- Defined in:
-
ext/libarchive-0.1.1/ext/libarchive_entry.c,
ext/libarchive-0.1.1/libarchive.c
561 562 563 564 565 566 567 568 |
# File 'ext/libarchive-0.1.1/ext/libarchive_entry.c', line 561 static VALUE (VALUE self, VALUE v_gname) { struct *p; Data_Get_Struct(self, struct , p); Check_Entry(p); Check_Type(v_gname, T_STRING); archive_entry_set_gname(p->ae, RSTRING_PTR(v_gname)); return Qnil; } |