/ft_printf

42cursus' ft_printf project. Start date 25/11/2022. Finish date 02/12/2022.

Primary LanguageC

ft_printf

Final Grade: 104/ 100%

Because ft_putnbr() and ft_putstr() aren’t enough

GitHub code size in bytes GitHub top language GitHub last commit

💡 About

The goal of this project is pretty straightforward. You will recode printf(). You will mainly learn about using a variable number of arguments. How cool is that?? It is actually pretty cool :)

This project basically consists of writing a libray that contains a simplified version
of the printf function.

🛠️ Usage

1. Cloning

To clone, run:

git clone https://github.com/WudDoo/ft_printf.git

2. Compiling

To compile, run make at the root of the ft_printf directory.

3. Using it

To use my ft_printf, simply include its header with the correct path in your code:

#include "<PATH>/ft_printf.h"

And compile your code with my static library libftprintf.a:

$(CC) $(CFLAGS) $(YOUR_SRCS) $(<PATH>/libftprintf.a)