🖨️ ft_printf

Because I'm tired of using putnbr and pustr.

GitHub code size in bytes Number of lines of code Code language count GitHub top language GitHub last commit

Badge

Ft_printf achiviment


💡 About the project

The aim of this project is to make you code a function that has the same funcionality of the function printf.

This project will enable you  to discover variadic functions
in C in a particularly relevant context as well as learn about a great example of a basic
“dispatcher” in C via the use of an array of function’s pointers

🛠️ Usage

Requirements

The function is written in C language and thus needs the gcc compiler and some standard C libraries to run.

Instructions

1. Compiling the library

To compile, go to the root path and run:

make

2. Using it in your code

To use the library functions in your code, simply include its header:

#include "./includes/ft_printf.h"

📋 Testing

You have to create the main.c file and

Or you can use this third party tester to fully test the project