├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── arena.h ├── code_examples ├── example.c ├── example_aligned.c └── example_debug.c ├── test.c ├── test.h └── test_compliance.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/README.md -------------------------------------------------------------------------------- /arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/arena.h -------------------------------------------------------------------------------- /code_examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/code_examples/example.c -------------------------------------------------------------------------------- /code_examples/example_aligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/code_examples/example_aligned.c -------------------------------------------------------------------------------- /code_examples/example_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/code_examples/example_debug.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/test.c -------------------------------------------------------------------------------- /test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/test.h -------------------------------------------------------------------------------- /test_compliance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgargantua/arena-allocator/HEAD/test_compliance.c --------------------------------------------------------------------------------