summaryrefslogtreecommitdiff
path: root/src/time/time_impl.h
AgeCommit message (Collapse)AuthorLines
2018-09-12move __strftime_fmt_1 declaration to time_impl.hRich Felker-0/+1
this is a helper function from strftime that's also used by wcsftime.
2018-09-12move __tm_to_tzname declaration to time_impl.h with related functionsRich Felker-0/+1
this function was added later for strftime use and the existence of time_impl.h as the appropriate place for it seems to have been overlooked.
2013-07-17the big time handling overhaulRich Felker-0/+9
this commit has two major user-visible parts: zoneinfo-format time zones are now supported, and overflow handling is intended to be complete in the sense that all functions return a correct result if and only if the result fits in the destination type, and otherwise return an error. also, some noticable bugs in the way DST detection and normalization worked have been fixed, and performance may be better than before, but it has not been tested.