Method: Time#day
- Defined in:
- time.c
permalink #mday ⇒ Integer
4760 4761 4762 4763 4764 4765 4766 4767 4768 |
# File 'time.c', line 4760
static VALUE
time_mday(VALUE time)
{
struct time_object *tobj;
GetTimeval(time, tobj);
MAKE_TM(time, tobj);
return INT2FIX(tobj->vtm.mday);
}
|