A basic tester for 42 ft_printf
project.
It only checks for differences between the return values of printf
and ft_printf
, so the outputs are to be manually checked
ft_printf/
├─Makefile
├─includes/*.h
├─*
└─ft_printf_tester/
- Clone the repository at the root of
ft_printf
project and change the working directory:
git clone https://github.com/pquline/ft_printf_tester.git
cd ft_printf_tester/
b
: run the tester inbonus
mode
./tester [b]
Note: If your header files are not located in the ìncludes/
directory, edit the INCLUDES
value according to their current location in run.sh.