Provide the day value of this date Arguments: None

Return TypeFunction nameArguments
uint32_thzSDate::Day(void)

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

Function Logic:

0:START 1:items 2:Return D

Function body:

uint32_t hzSDate::Day (void)
{
   //  Provide the day value of this date
   //  
   //  Arguments: None
   //  Returns: Number being the day 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 D ;
}