├── LICENSE ├── Makefile ├── README.md ├── SHMALL.png ├── commented_heap.c ├── heap.c ├── include ├── heap.h └── llist.h ├── llist.c └── main.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/README.md -------------------------------------------------------------------------------- /SHMALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/SHMALL.png -------------------------------------------------------------------------------- /commented_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/commented_heap.c -------------------------------------------------------------------------------- /heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/heap.c -------------------------------------------------------------------------------- /include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/include/heap.h -------------------------------------------------------------------------------- /include/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/include/llist.h -------------------------------------------------------------------------------- /llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/llist.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCareaga/heap_allocator/HEAD/main.c --------------------------------------------------------------------------------