Lines Matching refs:timelib_time
33 timelib_time* timelib_time_ctor(void) in timelib_time_ctor()
35 timelib_time *t; in timelib_time_ctor()
36 t = calloc(1, sizeof(timelib_time)); in timelib_time_ctor()
49 timelib_time* timelib_time_clone(timelib_time *orig) in timelib_time_clone()
51 timelib_time *tmp = timelib_time_ctor(); in timelib_time_clone()
52 memcpy(tmp, orig, sizeof(timelib_time)); in timelib_time_clone()
69 void timelib_time_tz_abbr_update(timelib_time* tm, char* tz_abbr) in timelib_time_tz_abbr_update()
80 void timelib_time_dtor(timelib_time* t) in timelib_time_dtor()
154 char *timelib_get_tz_abbr_ptr(timelib_time *t) in timelib_get_tz_abbr_ptr()
177 signed long timelib_date_to_int(timelib_time *d, int *error) in timelib_date_to_int()
202 void timelib_dump_date(timelib_time *d, int options) in timelib_dump_date()