132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
# File 'ext/libarchive-0.1.1/ext/libarchive_reader.c', line 132
static VALUE rb_libarchive_reader_s_open_memory(int argc, VALUE *argv, VALUE self) {
VALUE v_memory, v_compression, v_format;
int compression = -1, format = -1;
const char *cmd = NULL;
rb_scan_args(argc, argv, "12", &v_memory, &v_compression, &v_format);
Check_Type(v_memory, T_STRING);
if (T_STRING == TYPE(v_compression)) {
compression = -1;
cmd = RSTRING_PTR(v_compression);
} else if (!NIL_P(v_compression)) {
compression = NUM2INT(v_compression);
}
if (!NIL_P(v_format)) {
format = NUM2INT(v_format);
}
return rb_libarchive_reader_s_open0(rb_libarchive_reader_s_open_memory0, (void *) v_memory, compression, format, cmd);
}
|