This project consists of recoding a simplified version of printf() function.
The following conversions are implemented:
| Conversion | Description |
|---|---|
| %c | Prints a single character. |
| %s | Prints a string |
| %p | Prints a void * pointer in hexadecimal format |
| %d | Prints a decimal number |
| %i | Prints an integer |
| %u | Prints an unsigned decimal number |
| %x | Prints a hexadecimal number in lower case |
| %X | Prints a hexadecimal number in upper case |
| %% | Prints the percentage symbol |
- Nothing needed
makefor creatinglibftprintf.alibrary
- Variadic arguments