Included in updated libft (see: libft)
More information about the functionality in the subject ft_printf.en.pdf.
Conversions:
csp (char, string, pointer)
diouxX (int, int, octal, unsigned int, hex, HEX)
f (float)
Length modifiers:
hh, h, l and ll with formats 'diouxX'
l and L with format 'f'
Flags:
#0-+ and 'space'
Other:
precision
field width
%%
The function is written in C language and thus needs the gcc
compiler and some standard C libraries to run.
1. Compiling the library
To compile, go to the library path and run:
make && make clean
2. Using it in your code
To use the library functions in your code, simply include its header:
#include "ft_printf.h"