gitextract_p4qcftn9/ ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── libtest/ │ ├── .gitignore │ ├── Makefile │ ├── diff.c │ ├── libtest.h │ ├── print_errors.c │ └── string.c ├── malloc_count-0.7/ │ ├── README.md │ ├── memprofile.h │ ├── stack_count.c │ ├── stack_count.h │ ├── test-malloc_count/ │ │ ├── Makefile │ │ └── test.c │ └── test-memprofile/ │ ├── Makefile │ ├── memprofile.gnuplot │ └── test.cc ├── obj/ │ └── .gitignore ├── src/ │ ├── .gitignore │ ├── ft_printf_tester.h │ ├── get_next_line.c │ ├── get_next_line.h │ ├── get_next_line_utils.c │ ├── helpers.h │ ├── libftprintf.h │ ├── malloc_count.c │ ├── malloc_count.h │ ├── system_printer.c │ ├── tests.c │ ├── tests.c.old │ ├── user_printer.c │ └── utils.c └── test