The aim of this project is to code ft_printf function that will mimic the real printf function from libc. Variadic functions are used as base component in this project. Some of the Libft functions are been used in this project.
name | prototype | description |
---|---|---|
ft_printf | int ft_printf(const char *format, ...); | sends formatted output to stdout. |
note: ft_printf() manages any of the following flags "-0.*", and any of the following conversions:
- %c
- %s
- %p
- %d
- %i
- %u
- %x
- %X