summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/time.cpp
AgeCommit message (Expand)Author
2022-08-02LibC+LibCore: Use tm_isdst to handle time zone offsets in DSTTimothy Flynn
2022-08-02LibC: Split time_t range validation to separate helper functionTimothy Flynn
2022-08-02LibC: Cache the time zone name found by tzset()Timothy Flynn
2022-07-25Kernel/LibC: Implement posix syscall clock_getres()zzLinus
2022-07-22LibC: Mark a bunch of functions as cancellation pointsTim Schumacher
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-07-12Everywhere: Explicitly specify the size in StringView constructorssin-ack
2022-06-04LibC: Make asctime_r() in time.h POSIX compliantMay
2022-04-19LibC: Return early in time_to_tm for large time_tLeonardo Duarte
2022-04-15LibC+LibCore: Change a.m./p.m. to AM/PMcflip
2022-04-15LibC+LibCore: Properly format 12-hour formatted hourscflip
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-18Everywhere: Deduplicate day/month name constantsLenny Maiorani
2022-03-13LibC: Use altzone for the current time zone offset during DSTTimothy Flynn
2022-01-25LibTimeZone+Userland: Rename current_time_zone to system_time_zoneTimothy Flynn
2022-01-25LibC: Ensure tzname and related fields are intializedTimothy Flynn
2022-01-25LibC: Revert localtime_r to use time zone information set by tzsetTimothy Flynn
2022-01-25LibC: Invoke tzset from time functions required to update time zone infoTimothy Flynn
2022-01-25LibC: Implement tzset with time zone awareness in accordance with POSIXTimothy Flynn
2022-01-23LibC: Use LibTimeZone to offset localtime() for the system time zoneTimothy Flynn
2021-08-12LibC: Don't delete null check in `gettimeofday`Daniel Bertalan
2021-08-10LibC: Use CLOCK_REALTIME_COARSE for gettimeofday()Andreas Kling
2021-08-10Kernel+LibC: Allow clock_gettime() to run without syscallsAndreas Kling
2021-08-10LibC: Implement gettimeofday() in terms of clock_gettime(CLOCK_REALTIME)Andreas Kling
2021-05-21Revert "Userland: static vs non-static constexpr variables"Linus Groh
2021-05-21Userland: static vs non-static constexpr variablesLenny Maiorani
2021-05-07LibC: Convert StringBuilder::appendf() => AK::FormatAndreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21LibC: Fix missing '\n' at the end of ctime/ctime_r/asctime/asctime_rBrian Gianforcaro
2021-04-21LibC: Add ctime_r() and asctime_r() implementationsBrian Gianforcaro
2021-03-29LibC: Implement utimes functionJelle Raaijmakers
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-05Userland: Add LibSystem and funnel all syscalls through itAndreas Kling
2021-01-18LibC: Return ENOSYS from clock_getres() rather than assertingLinus Groh
2021-01-18LibC: Make tzset() set daylight to 0Linus Groh
2021-01-18LibC: Make tzset() set tzname to { "UTC", "UTC" }Linus Groh
2021-01-17LibC: Change a couple of ASSERT_NOT_REACHED() to TODO()Linus Groh
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling