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.