This project has been created as part of the 42 curriculum by umansurj.
The goal of the project is to implement a minimal copy of printf function from C/C++ programmign language. It should work with cspdiuxX% conventions.
To compile the library just execute make
The tester was used to check the correct work of library: https://github.com/Tripouille/printfTester YouTube overviews of different topics was watched. AI was used at the very end to find a bug with segmentation error.
I chose to split my program into two different files. ft_printf.c contains workflow devision and logic management. ft_printf_utils.c contains main "worker" functions which print the output to the terminal.