libc

Tm

struct Tm
{
	CInt	tm_sec;		// seconds after the minute [0-60]
	CInt	tm_min;		// minutes after the hour [0-59]
	CInt	tm_hour;	// hours since midnight [0-23]
	CInt	tm_mday;	// day of the month [1-31]
	CInt	tm_mon;		// months since January [0-11]
	CInt	tm_year;	// years since 1900
	CInt	tm_wday;	// days since Sunday [0-6]
	CInt	tm_yday;	// days since January 1 [0-365]
	CInt	tm_isdst;	// Daylight Savings Time flag
	TimeOffset tm_gmtoff @if(!env::WIN32);	/* offset from UTC in seconds */
	char* tm_zone @if(!env::WIN32);	/* timezone abbreviation */
	CInt tm_nsec @if(env::WASI);
}

Members

Methods