Rewrite of the printf function.
- %c: Display character.
- %s: Display string.
- %d / %i: Display integer.
- %u: Display unsigned integer.
- %x / %X: Display hexadecimal number lowercase or uppercase.
- %p: Display pointer address.
- %%: Display % character.
##Attributes
- +: Display spaces after argument.
- -: Display spaces before argument.
- 0: Fill size of zero by size - argument length.
- .: Use precision.
- Clone Repository
git clone https://github.com/vvaucoul/Ft_Printf && cd Ft_Printf- Compilation
makeint ft_printf(const char *str, ...);