zig-snappy icon indicating copy to clipboard operation
zig-snappy copied to clipboard

Snappy compression for Zig

Results 1 zig-snappy issues
Sort by recently updated
recently updated
newest added

Caught in following test code: ```zig fn printHex(comptime label: []const u8, data: []u8) void { print("{s}: ", .{label}); for (data) |byte| print("{x}", .{byte}); print("\n", .{}); } test "first snappy exec"...