├── Makefile ├── README.md ├── malloc.c ├── test ├── test-0.c ├── test-1.c ├── test-2.c ├── test-3.c ├── test-4.c └── test-5.c └── wrapper.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/malloc.c -------------------------------------------------------------------------------- /test/test-0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/test/test-0.c -------------------------------------------------------------------------------- /test/test-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/test/test-1.c -------------------------------------------------------------------------------- /test/test-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/test/test-2.c -------------------------------------------------------------------------------- /test/test-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/test/test-3.c -------------------------------------------------------------------------------- /test/test-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/test/test-4.c -------------------------------------------------------------------------------- /test/test-5.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danluu/malloc-tutorial/HEAD/wrapper.c --------------------------------------------------------------------------------