ft_printf
ft_printf copied to clipboard
42cursus' ft_printf project. Begin date 06/sep/2021. Finish date 13/sep/2021. About 30h of total work.
✏️ ft_printf
Because putnbr and putstr aren’t enough
About · Usage · Testing
💡 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 (more
information below) of the printf function.
For more detailed information, look at the subject of this project.
🛠️ 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 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: