A custom implementation of the C printf() function.
- Supports these format specifiers:
%c(character)%s(string)%p(pointer, hexadecimal)%d,%i(signed decimal)%u(unsigned decimal)%x(hexadecimal, lowercase)%X(hexadecimal, uppercase)%%(percent sign)
Link the libftprintf.a library and use:
int ft_printf(const char *format, ...);