├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── main.zig └── snappy.zig /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/README.md -------------------------------------------------------------------------------- /main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/main.zig -------------------------------------------------------------------------------- /snappy.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsquire/zig-snappy/HEAD/snappy.zig --------------------------------------------------------------------------------