Because ft_putnbr() and ft_putstr() aren’t enough...
This project is implementation of printf in C.
- Please clone and compile this repository as follows.
git clone https://github.com/tmuramat081/42_printf.git
cd 42_printf
make
- To use the library, please link libftprintf.a at compile.
gcc main.c -L. -lftprintf -o main.exe
- Don't forget to include this header in your code.
#include "ft_printf.h"
Taisei Muramatsu (tmuramat)