No fancy words, just straighforward recreate the printf function.
This is one of those projects where the proposal is simple, but the execution....
A small description of the required conversion:
%cprint a single character (ft_putchar.c).%sprint a NULL terminated string of characters (ft_putstr.c).%pThe void * argument is printed in hexadecimal (ft_printptr.c).%dprint a base 10 number (ft_putnbr.c).%isame as %d (ft_putnbr.c).%uprint an unsigned int in base 10 number (ft_putnbr.c).%xprint a number in hexadecimal (base 16) (ft_printhex.c).%%print a percent sign.
You can clone the source code and compile alongside your other src files, or you can follow the steps on the 42 Cursus' Libft and use the full lib.
Just clone option:
git clone https://github.com/Grsaiago/ft_printf.git && <move the .c and .h files to your project's src dir and compile together>🧔 Gabriel Saiago
