| Return Type | Function name | Arguments |
|---|---|---|
| int | hzXDate::datecmp | (hzXDate&,hzXDate&,) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
int hzXDate::datecmp (hzXDate& a, hzXDate& b)
{
if ( a.m_hour > b.m_hour)
return 1;
if (a.m_hour < b.m_hour)
return -1;
if (a.m_usec > b.m_usec)
return 1;
if (a.m_usec < b.m_usec)
return -1;
return 0;
}