mtime 1.2.2
|
Time and some operations supported on Time. More...
#include <stdint.h>
Go to the source code of this file.
Data Structures | |
struct | _time |
struct _time containing usual time parameters. More... | |
Functions | |
struct _time * | newTime (const char *time_string) |
Construct new Time using an ISO 8601 conforming string. | |
struct _time * | newRawTime (int _hour, int _minute, int _second, int _ms) |
Construct new Time using 'raw' numerical values. | |
struct _time * | constructAndCopyTime (struct _time *t) |
Copy the values and construct a new Time. | |
void | deallocateTime (struct _time *t) |
Destructor of Time. | |
struct _time * | replaceTime (struct _time *, struct _time *) |
COPY a time object. | |
char * | timeToString (struct _time *, char *) |
Get time as an extended string. | |
char * | timeToBasicString (struct _time *, char *) |
Get time as a basic string. | |
char * | timeToPosixString (struct _time *t, char *toStr, char *fmtString) |
Get Time in 'struct tm' format and return as a string. | |
Time and some operations supported on Time.