Provide the year value of this date Arguments: None

Return TypeFunction nameArguments
uint32_thzSDate::Year(void)

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

Function Logic:

0:START 1:items 2:Return Y

Function body:

uint32_t hzSDate::Year (void)
{
   //  Provide the year value of this date
   //  
   //  Arguments: None
   //  Returns: Number being the year value of this date
   uint32_t    Y ;     //  Year part
   uint32_t    M ;     //  Month part
   uint32_t    D ;     //  Day part
   _datefromdays(Y, M, D, m_days) ;
   return Y ;
}