Method: Time#mon
- Defined in:
- time.c
#mon ⇒ Integer
4784 4785 4786 4787 4788 4789 4790 4791 4792 |
# File 'time.c', line 4784
static VALUE
time_mon(VALUE time)
{
struct time_object *tobj;
GetTimeval(time, tobj);
MAKE_TM(time, tobj);
return INT2FIX(tobj->vtm.mon);
}
|