Project for 42_Roma
This project is pretty straight forward. You will recode printf. You will mainly learn how to use variadic arguments.
The project contains a C library regrouping usual functions and ft_printf, a function that will mimic the real printf.
See the subjects for further information:
In the Resources folder you can find some useful links and papers about the printf function and some related vulnerabilities.
The project inside the folder ft_printf_v1 refers to an initial and much older version, tested only on the Mac OS operating system.
The repository contains a main, useful to test the ft_printf function.
The following command builds the complete library, also with the libft bonus functions
make re
For testing the library with the main, use this command:
gcc -L . -lftprintf main_ft_printf.c