Return the month part from this hzXDate Arguments: None
| Return Type | Function name | Arguments |
|---|---|---|
| uint32_t | hzXDate::Month | (void) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
uint32_t hzXDate::Month (void)
{
// Return the month part from this hzXDate
//
// Arguments: None
// Returns: Number being month of year
uint32_t Y ; // Year
uint32_t M ; // Month
uint32_t D ; // Day of month
_datefromdays(Y, M, D, m_hour/24);
return M ;
}