Welcome to ft_printf! A custom implementation of the printf function coded in C. This project replicates the C function printf, using the va_list feature.
~ Uses the va_list object type and the va_arg function to handle variable arguments.
~ Implemented Format Specifiers: '%c', '%s', '%d', '%u, '%x', '%X', '%p', '%%'.