| Return Type | Function name | Arguments |
|---|---|---|
| const char* | Periodicity2Txt | (const hzPeriodicity,) |
Declared and defined in file: hzCron.cpp
Function Logic:
Function body:
const char* Periodicity2Txt (const hzPeriodicity P)
{
if (P < 0|| P > HZPERIOD_INVALID)
return _hzGlobal_Periodicities[HZPERIOD_INVALID] ;
return _hzGlobal_Periodicities[P] ;
}