diff options
author | 2022-03-02 03:07:04 -0800 | |
---|---|---|
committer | 2022-03-02 03:07:04 -0800 | |
commit | ea7d38cea7a8f517b3ff677cd8521ef48e6e61bc (patch) | |
tree | eddc0cd088104fce1ec5ccb69c431439fb0845f8 | |
parent | 4b36efd50ad27f7b390ca38b2f968e1dfcdbe4f1 (diff) | |
download | bun-ea7d38cea7a8f517b3ff677cd8521ef48e6e61bc.tar.gz bun-ea7d38cea7a8f517b3ff677cd8521ef48e6e61bc.tar.zst bun-ea7d38cea7a8f517b3ff677cd8521ef48e6e61bc.zip |
Update fs.zig
-rw-r--r-- | src/fs.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fs.zig b/src/fs.zig index 98874ff11..19af52aeb 100644 --- a/src/fs.zig +++ b/src/fs.zig @@ -21,6 +21,9 @@ const PathString = _global.PathString; const allocators = @import("./allocators.zig"); const hash_map = @import("hash_map.zig"); +pub const MAX_PATH_BYTES = _global.MAX_PATH_BYTES; +pub const PathBuffer = [_global.MAX_PATH_BYTES]u8; + // pub const FilesystemImplementation = @import("fs_impl.zig"); pub const Preallocate = struct { |