/42_ft_printf

Reproducing the original printf function (stdio.h)

Primary LanguageCBSD 2-Clause "Simplified" LicenseBSD-2-Clause

42_ft_printf

Reproducing the original and complete printf function (stdio.h).
Note that float numbers are not supported but the function has been improved with original bonuses.
The output is a static library including necessary libft functions: libftprintf.a

Install

Create or update the static library from sources.

make

Reinstall

Regenerate completely the static library.

make re

Clean

Delete object files created during installation.

make clean

Uninstall

Delete object files but also the compiled static library.
It will not affect the source code.

make fclean

Reminder

Screenshot 2022-11-15 at 21-29-36 FT_PRINTF - FT_PRINTF - Feuille 1 pdf

Screenshot 2022-11-15 at 21-30-04 FT_PRINTF - FT_PRINTF - Feuille 1 pdf

Capture d’écran du 2022-11-15 21-43-51

Capture d’écran du 2022-11-15 21-47-41

Keywords

Parsing
Variadic functions