Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.02 KB

README.md

File metadata and controls

47 lines (28 loc) · 1.02 KB

💥 ft_printf

Because putnbr and putstr aren’t enough

💡 About the project

This project is pretty straight forward. You will recode printf. You will mainly learn how to use variadic arguments. This project consists of coding a library that contains a simplified version

🛠️ Usage

Requirements

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

Instructions

1. Compiling the library

To compile, go to the library path and run:

$ make

2. 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:

image

Don't copy but learn