This project is a reimplementation of the C standard library function printf. The goal is to create your own version that handles basic formatting.
%cβ character%sβ string%pβ pointer (address)%d/%iβ signed integer%uβ unsigned integer%x/%Xβ hexadecimal (lower/upper)%%β literal percent sign
cc -Wall -Wextra -Werror ft_printf.c ft_utils.c main.c- ft_printf.c
- ft_utils.c
- ft_printf.h
Created and maintained by Martin Justa as part of the 42 school curriculum.