├── .gitignore ├── Makefile ├── README.md ├── alloc_hook ├── alloc_hook.c ├── alloc_hook.h ├── alloc_list.c ├── alloc_list.h ├── alloc_vector.c ├── alloc_vector.h ├── utils_hook.c └── utils_hook.h ├── demo_main.c ├── how_it_work.md ├── ressources ├── logo.png ├── screenshot.png └── well_protected.png └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/README.md -------------------------------------------------------------------------------- /alloc_hook/alloc_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/alloc_hook.c -------------------------------------------------------------------------------- /alloc_hook/alloc_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/alloc_hook.h -------------------------------------------------------------------------------- /alloc_hook/alloc_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/alloc_list.c -------------------------------------------------------------------------------- /alloc_hook/alloc_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/alloc_list.h -------------------------------------------------------------------------------- /alloc_hook/alloc_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/alloc_vector.c -------------------------------------------------------------------------------- /alloc_hook/alloc_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/alloc_vector.h -------------------------------------------------------------------------------- /alloc_hook/utils_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/utils_hook.c -------------------------------------------------------------------------------- /alloc_hook/utils_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/alloc_hook/utils_hook.h -------------------------------------------------------------------------------- /demo_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/demo_main.c -------------------------------------------------------------------------------- /how_it_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/how_it_work.md -------------------------------------------------------------------------------- /ressources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/ressources/logo.png -------------------------------------------------------------------------------- /ressources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/ressources/screenshot.png -------------------------------------------------------------------------------- /ressources/well_protected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/ressources/well_protected.png -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/froz42/ft_mallocator/HEAD/test.sh --------------------------------------------------------------------------------