Developed program to recreate standard printf function using variadic functions in C
Conversions handled: cspdiouxXf%
Flags handled: 0,-,' ',+
Field Width handled
Precision handled
Length handled: l, ll, h, hh, L
Run Program on Command Line: gcc -g main.c printf.c input_check.c char_str_percent_functions.c pointeraddress_decimal_functions.c octal_unsigneddecimal_functions.c hexadecimal_float_functions.c
The output contains a multitude of different tests performed on ft_printf with comparison to the original function printf.