Return the month part from this hzXDate Arguments: None

Return TypeFunction nameArguments
uint32_thzXDate::Month(void)

Declared in file: hzDate.h
Defined in file : hzDate.cpp

Function Logic:

0:START 1:items 2:Return M

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 ;
}