Functions |
| int R_CDECL | R_TIME_CTX_new (R_LIB_CTX *lib_ctx, R_RES_FLAG flag, R_TIME_CTX **time_ctx) |
| | Allocates a new time module context. More...
|
| int R_CDECL | R_TIME_CTX_free (R_TIME_CTX *ctx) |
| | Deallocates a time module context object. More...
|
| int R_CDECL | R_TIME_new (R_TIME_CTX *ctx, R_TIME **time_p) |
| | Allocates a new time object. More...
|
| int R_CDECL | R_TIME_free (R_TIME *time_p) |
| | Deallocates a time module object. More...
|
| int R_CDECL | R_TIME_time (R_TIME *time_p) |
| | Stores the current time of day in the supplied time object. More...
|
| int R_CDECL | R_TIME_cmp (R_TIME *time1, R_TIME *time2, int *comp) |
| | Compares two time objects, time1 and time2. More...
|
| int R_CDECL | R_TIME_offset (R_TIME *time1, R_TIME *time2, long off) |
| | Adds an offset in seconds to the given time value and returns the result. More...
|
| int R_CDECL | R_TIME_export (R_TIME *time_p, int format, unsigned char *buf, unsigned int *len, unsigned int max_len) |
| | Converts from an internal time value to the format specified. More...
|
| int R_CDECL | R_TIME_import (R_TIME *time_p, int format, unsigned char *buf, unsigned int buf_len) |
| | Converts from the specified format to internal time. More...
|
| int R_CDECL | R_TIME_dup (R_TIME *f_time, R_TIME **d_time) |
| | Duplicates an R_TIME structure from an existing R_TIME structure f_time. More...
|