aboutsummaryrefslogtreecommitdiff
path: root/lib/std/tz.zig
AgeCommit message (Collapse)Author
2025-08-28std.tz: fix redundant endian handlingAndrew Kelley
I didn't notice the check+swap before.
2025-08-28std.tz: update to new Reader APIAndrew Kelley
2023-10-31std.builtin.Endian: make the tags lower caseAndrew Kelley
Let's take this breaking change opportunity to fix the style of this enum.
2023-10-31mem: fix ub in writeIntJacob Young
Use inline to vastly simplify the exposed API. This allows a comptime-known endian parameter to be propogated, making extra functions for a specific endianness completely unnecessary.
2023-06-24all: migrate code to new cast builtin syntaxmlugg
Most of this migration was performed automatically with `zig fmt`. There were a few exceptions which I had to manually fix: * `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten * `@truncate`'s fixup is incorrect for vectors * Test cases are not formatted, and their error locations change
2023-04-28update codebase to use `@memset` and `@memcpy`Andrew Kelley
2022-06-17std.tz: fix function returning pointer to local variableVeikka Tuominen
2022-06-12std: disable failing tests, add zig2 build test-std to CIVeikka Tuominen
2022-01-28Rename mem.bswapAllFields to byteSwapAllFieldsJohn Schmidt
To match the renaming of `@bswap` to `@byteSwap` in https://github.com/ziglang/zig/commit/1fdb24827fb51351d5e31103069619668fae31c4.
2022-01-01Support legacy TZ format, expose header struct to a potential writerJens Goldberg
2021-12-31Remove a no-op line that was left in by mistakeJens Goldberg
2021-12-31tz parsing reader interface, test thicc files, and exclude tzifJens Goldberg
2021-12-30Support parsing tz timezone dataJens Goldberg