about summary refs log tree commit diff
path: root/src/time/time_impl.h
Commit message (Collapse)AuthorAgeFilesLines
* move __strftime_fmt_1 declaration to time_impl.hRich Felker2018-09-121-0/+1
| | | | this is a helper function from strftime that's also used by wcsftime.
* move __tm_to_tzname declaration to time_impl.h with related functionsRich Felker2018-09-121-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.
* the big time handling overhaulRich Felker2013-07-171-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.