Return TypeFunction nameArguments
ostream&operator<<(ostream&,const hzSDate&,)

Declared and defined in file: hzDate.cpp

Function Logic:

0:START 1:hzSDate::Year hzSDate::Month hzSDate::Day sprintf items 2:Return os

Function body:

ostream& operator<< (ostream& os, const hzSDate& d)
{
   char    buf[12];
   sprintf(buf, "%04d/%02d/%02d", d.Year(), d.Month(), d.Day()) ;
   os << buf ;
   return os ;
}