![]() |
gxPL
1.0
Tools, Application and Framework for xPL
|
![]() |
Functions | |
char * | gxPLDateStr (unsigned long t, const char *format) |
converts the system time t into a null-terminated string More... | |
char * | gxPLDateTimeStr (unsigned long t, const char *format) |
converts the system time t into a null-terminated string More... | |
unsigned long | gxPLTime (void) |
System time This time can be an absolute time (a date) or relative to the system startup (on embedded platform, for example) More... | |
int | gxPLTimeDelayMs (unsigned long ms) |
suspends execution for (at least) ms milliseconds More... | |
int | gxPLTimeMs (unsigned long *ms) |
System time in milliseconds. More... | |
char * | gxPLTimeStr (unsigned long t, const char *format) |
converts the system time t into a null-terminated string More... | |
char* gxPLDateStr | ( | unsigned long | t, |
const char * | format | ||
) |
converts the system time t into a null-terminated string
t | time return by gxPLTime |
format | same as strftime() on unix, NULL if default (yyyymmdd) |
char* gxPLDateTimeStr | ( | unsigned long | t, |
const char * | format | ||
) |
converts the system time t into a null-terminated string
t | time return by gxPLTime |
format | same as strftime() on unix, NULL if default (yyyymmddhhmmss) |
unsigned long gxPLTime | ( | void | ) |
System time This time can be an absolute time (a date) or relative to the system startup (on embedded platform, for example)
int gxPLTimeDelayMs | ( | unsigned long | ms | ) |
suspends execution for (at least) ms milliseconds
ms | delay in milliseconds |
int gxPLTimeMs | ( | unsigned long * | ms | ) |
System time in milliseconds.
ms | pointer on the result |
char* gxPLTimeStr | ( | unsigned long | t, |
const char * | format | ||
) |
converts the system time t into a null-terminated string
t | time return by gxPLTime |
format | same as strftime() on unix, NULL if default (hhmmss) |