mtime()
public
Returns last modification time recorded in the gzip file header.
Show source
/*
* Returns last modification time recorded in the gzip file header.
*/
static VALUE
rb_gzfile_mtime(obj)
VALUE obj;
{
return rb_time_new(get_gzfile(obj)->mtime, (time_t)0);
}