├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── heap.c ├── heap.h ├── jim.h ├── main.c └── thumbnails ├── part-1.png └── part-2.png /.gitignore: -------------------------------------------------------------------------------- 1 | heap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/README.md -------------------------------------------------------------------------------- /heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/heap.c -------------------------------------------------------------------------------- /heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/heap.h -------------------------------------------------------------------------------- /jim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/jim.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/main.c -------------------------------------------------------------------------------- /thumbnails/part-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/thumbnails/part-1.png -------------------------------------------------------------------------------- /thumbnails/part-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsoding/memalloc/HEAD/thumbnails/part-2.png --------------------------------------------------------------------------------