aboutsummaryrefslogtreecommitdiff
path: root/lib/std/fs/path.zig
AgeCommit message (Expand)Author
2022-08-22Sema: fix parameter of type 'T' must be comptime errorVeikka Tuominen
2022-04-16stdlib std.os: Improve wasi-libc parity for WASI CWD emulationCody Tapscott
2022-03-03stdlib WASI: Add realpath() support for non-absolute PreopensCody Tapscott
2022-03-03stdlib: Add emulated CWD to std.os for WASI targetsCody Tapscott
2022-01-11std.fs.path: revert recent public API changeAndrew Kelley
2022-01-11std: fix path joining on UEFIfifty-six
2021-11-30allocgate: std Allocator interface refactorLee Cannon
2021-11-30std lib API deprecations for the upcoming 0.9.0 releaseAndrew Kelley
2021-11-04std: Fix path resolution on WindowsLemonBoy
2021-08-24remove redundant license headers from zig standard libraryAndrew Kelley
2021-08-06Update all usages of mem.split/mem.tokenize for generic versionRyan Liptak
2021-07-28Skip empty strings in std.fs.path.join functionAustin Clements
2021-06-21fix code broken from previous commitJacob G-W
2021-05-17std: update regarding std.builtin reorganizationAndrew Kelley
2021-05-08Merge remote-tracking branch 'origin/master' into stage2-whole-file-astgenAndrew Kelley
2021-05-08std: update usage of std.testingVeikka Tuominen
2021-04-15std: change `@import("builtin")` to `std.builtin`Andrew Kelley
2021-03-18std: Fix std.fs.path.joinZroot
2021-03-01std: Replace lastIndexOf with lastIndexOfScalarLemonBoy
2021-03-01std: Add std.fs.path.joinZ (#7974)fancl20
2021-01-11update path.join to recognize any separators that isSep doesTravis
2020-12-31Year++Frank Denis
2020-12-11std.fs.path.extension: different behavior for ending dotAndrew Kelley
2020-12-11std.fs.path.extension: add additional API guaranteeAndrew Kelley
2020-12-11Merge pull request #7098 from MasterQ32/std.fs.path.extensionAndrew Kelley
2020-11-18Changes behaviour from std.fs.path.extension from returning `null` to returni...Felix (xq) Queißner
2020-11-14Adapts to @andrewrk​s comment to include dot.Felix (xq) Queißner
2020-11-13std.fs.path.dirname: return null when input path is rootAndrew Kelley
2020-11-13Makes @haze happy.Felix (xq) Queißner
2020-11-13Respects leading `.` and ignores it.Felix (xq) Queißner
2020-11-13Implements std.fs.path.extension.Felix (xq) Queißner
2020-08-20add license header to all std lib filesAndrew Kelley
2020-07-04std.mem.dupe is deprecated, move all references in stdjoachimschmidt557
2020-06-09fix memory errorsJonathan Marler
2020-05-18Add/fix missing WASI functionality to pass libstd testsJakub Konka
2020-05-01Merge branch 'windows-evented-io' of https://github.com/FireFox317/zig into F...Andrew Kelley
2020-03-30std lib API deprecations for the upcoming 0.6.0 releaseAndrew Kelley
2020-02-28introduce operating system version ranges as part of the targetAndrew Kelley
2020-02-12Switch a bunch of FBA to use testing.allocatorBenjamin Feng
2020-02-05std: Rename isAbsoluteW to isAbsoluteWindowsWLemonBoy
2020-02-04std: Fix edge case in isAbsolute fn familyLemonBoy
2020-01-29Promoted "leak_count_allocator" to the main testing.allocatorBenjamin Feng
2020-01-29Create leak_count_allocatorBenjamin Feng
2020-01-29Move debug.global_allocator to testing.allocatorBenjamin Feng
2019-12-01Merge remote-tracking branch 'origin/master' into remove-array-type-coercionAndrew Kelley
2019-11-30move `std.fs.Dir.cwd` to `std.fs.cwd`Andrew Kelley
2019-11-27remove type coercion from array values to referencesAndrew Kelley
2019-11-21string literals are now null terminatedAndrew Kelley
2019-11-06allow type coercion from *[0]T to E![]const TAndrew Kelley
2019-10-29inline path separator looplukechampine