/ft_printf-42

he goal of this project is pretty straightforward. You will recode printf(). You will mainly learn about using a variable number of arguments

Primary LanguageC

✏️ ft_printf

Because putnbr and putstr aren’t enough

This project consists of coding a library that contains a simplified version (more information below) of the printf function.

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 library path and run:

$ make

  1. Using it in your code

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

#include "ft_printf.h"

📋 Testing

You can use this third party tester to fully test the project:

Tripouille/printfTester