Method: Zlib::GzipReader#lineno=
- Defined in:
- zlib.c
#lineno=(lineno) ⇒ Object
Specify line number of the last row read from this file.
3426 3427 3428 3429 3430 3431 3432 |
# File 'zlib.c', line 3426
static VALUE
rb_gzfile_set_lineno(VALUE obj, VALUE lineno)
{
struct gzfile *gz = get_gzfile(obj);
gz->lineno = NUM2INT(lineno);
return lineno;
}
|