ft_printf is a custom implementation of the printf function in C, developed as part of the 42 Network curriculum. This project aims to recreate the functionality of printf to handle various format specifiers and conversion types.
- Implementation of printf function with support for various format specifiers
- Custom handling for different data types
- Extension to support additional format specifiers not included in the standard library
ft_printf supports the following format specifiers:
- %c - Character
- %s - String
- %p - Pointer
- %d - Decimal (integer)
- %i - Integer
- %u - Unsigned integer
- %x - Unsigned hexadecimal (lowercase)
- %X - Unsigned hexadecimal (uppercase)
- %% - Literal percent sign