From: patrick-scho Date: Sat, 10 Aug 2024 14:44:14 +0000 (+0200) Subject: Konstante für buffer größe X-Git-Url: https://gitweb.ps.run/ziggit/commitdiff_plain/1eff0cba79ccb40715c7d1257f8b0743bf2b6b0b Konstante für buffer größe --- diff --git a/git.zig b/git.zig index 01518c9..7dd1d96 100644 --- a/git.zig +++ b/git.zig @@ -4,6 +4,8 @@ const Alloc = std.mem.Allocator; const Reader = std.io.AnyReader; const Writer = std.io.AnyWriter; +const MaxFileSize = 1024 * 1024; + const Id = u160; const Commit = struct { author: []u8,