ft_printf is a reimplementation of the standard printf function of the C language, created as part of the school 42 curriculum. It allows, like printf, to display formatted text on the standard output following precise format specifiers.
- %c Prints a single character.
- %s Prints a string (as defined by the common C convention).
- %p The void * pointer argument has to be printed in hexadecimal format.
- %d Prints a decimal (base 10) number.
- %i Prints an integer in base 10.
- %u Prints an unsigned decimal (base 10) number.
- %x Prints a number in hexadecimal (base 16) lowercase format.
- %X Prints a number in hexadecimal (base 16) uppercase format.
- %% Prints a percent sign.
# Clone this repository
$ git clone https://github.com/HaruSnak/Ft_Printf.git
# Go into the repository
$ cd Ft_Printf
# To compile the program
$ make
# Allows you to do a complete cleaning of your construction environment
$ make fclean # Or make clean
.
└── 📁printf
└── Makefile
└── README.md
└── ft_conv_primary.c
└── ft_conv_specifies.c
└── ft_conv_suit.c
└── ft_printf.c
└── ft_printf.h
└── ft_putchar.c
└── ft_putchar_fd.c
└── ft_putnbr.c
└── ft_putstr.c
└── ft_strlen.c
Below you will find the links used for this project: