├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── licenses.txt ├── src ├── CountingAllocator.zig ├── FailingAllocator.zig ├── LimitingAllocator.zig ├── LivenessAllocator.zig ├── PanicAllocator.zig ├── UnreachableAllocator.zig ├── ZeroAllocator.zig └── lib.zig ├── test.zig └── zigmod.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/README.md -------------------------------------------------------------------------------- /licenses.txt: -------------------------------------------------------------------------------- 1 | MIT: 2 | = https://spdx.org/licenses/MIT 3 | - This 4 | -------------------------------------------------------------------------------- /src/CountingAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/CountingAllocator.zig -------------------------------------------------------------------------------- /src/FailingAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/FailingAllocator.zig -------------------------------------------------------------------------------- /src/LimitingAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/LimitingAllocator.zig -------------------------------------------------------------------------------- /src/LivenessAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/LivenessAllocator.zig -------------------------------------------------------------------------------- /src/PanicAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/PanicAllocator.zig -------------------------------------------------------------------------------- /src/UnreachableAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/UnreachableAllocator.zig -------------------------------------------------------------------------------- /src/ZeroAllocator.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/ZeroAllocator.zig -------------------------------------------------------------------------------- /src/lib.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/src/lib.zig -------------------------------------------------------------------------------- /test.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/test.zig -------------------------------------------------------------------------------- /zigmod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektro/gimme/HEAD/zigmod.yml --------------------------------------------------------------------------------