Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1 KB

README.md

File metadata and controls

35 lines (22 loc) · 1 KB

ft_printf

Project for 42_Roma

This project is pretty straight forward. You will recode printf. You will mainly learn how to use variadic arguments.

The project contains a C library regrouping usual functions and ft_printf, a function that will mimic the real printf.

See the subjects for further information:

SUBJECT

OLD_SUBJECT

In the Resources folder you can find some useful links and papers about the printf function and some related vulnerabilities.

Getting Started

The project inside the folder ft_printf_v1 refers to an initial and much older version, tested only on the Mac OS operating system.

The repository contains a main, useful to test the ft_printf function.

Build the library

The following command builds the complete library, also with the libft bonus functions

make re

For testing the library with the main, use this command:

gcc -L . -lftprintf main_ft_printf.c