├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── babymalloc.c ├── babymalloc.h └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/README.md -------------------------------------------------------------------------------- /babymalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/babymalloc.c -------------------------------------------------------------------------------- /babymalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/babymalloc.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amrdb/babymalloc/HEAD/test.c --------------------------------------------------------------------------------