local(*args)
public
Same as Time::gm, but interprets the values in the local time zone.
Time.local(2000,"jan",1,20,15,1)
Show source
static VALUE
time_s_mktime(int argc, VALUE *argv, VALUE klass)
{
struct vtm vtm;
time_arg(argc, argv, &vtm);
return time_localtime(time_new_timew(klass, timelocalw(&vtm)));
}