A recration of the printf function from <stdio.h> made for unix systems. Make will compile the library libft and add the ft_printf function to it.
- %c - prints a single character
- %s - prints a string
- %p - prints a pointer in hexadecimal
- %d - prints a decimal number
- %i - prints an integer in base 10
- %u - prints an unsigned decimal number
- %x - prints a number in lowercase hexadecimal
- %X - prints a number in uppercase hexadecimal
- %% - prints a % sign
- Variadic functions