|
Y-lib
Loadrunner libraries
|
Standard C structures and functions to handle date and time (defined in ctime.h) More...
Data Structures | |
| struct | tm |
| Documented at http://www.cplusplus.com/reference/ctime/tm/. Values outside of valid ranges can be used to calculate a new date/time using mktime. E.g. tm_mday = 0 means last day of previous month. More... | |
| struct | _timeb |
| Used by ftime. Defined as _timeb (instead of timeb) just as in the on-line Help. More... | |
Typedefs | |
| typedef long | time_t |
| Type time_t can hold a Unix timestamp. More... | |
Standard C structures and functions to handle date and time (defined in ctime.h)
| char* asctime | ( | const struct tm * | tmTime | ) |
Documented at http://www.cplusplus.com/reference/ctime/asctime/.
| char* ctime | ( | const time_t * | calTime | ) |
Documented at http://www.cplusplus.com/reference/ctime/ctime/.
| void ftime | ( | struct _timeb * | time | ) |
Documented at http://www.cplusplus.com/reference/ctime/gmtime/.
Documented at http://www.cplusplus.com/reference/ctime/localtime/.
Documented at http://www.cplusplus.com/reference/ctime/mktime/.
| size_t* strftime | ( | char * | string, |
| size_t | maxlen, | ||
| const char * | format, | ||
| const struct tm * | timestruct | ||
| ) |
Documented at http://www.cplusplus.com/reference/ctime/strftime/.
Documented at http://www.cplusplus.com/reference/ctime/time/.
| void tzset | ( | void | ) |
Documented at http://www.cplusplus.com/reference/ctime/tzset/.
1.8.11