Project for 42 Roma Luiss
The aim of this project is to code a C library regrouping usual functions that you’ll be allowed to use in all your other projects.
This project is your very first project as a student at 42.
You will need to recode a few functions of the C standard library as well as some other utility functions that you will use during your whole cursus.
The project inside the folder Libft_v1 refers to an initial and much older version, tested only on the Mac OS operating system.
In the main folder, we find a recent version of the project developed and tested on a Linux environment.
See the subjects for further information:
The repository contains a main, usefull to test the functions.
The following command builds the library, without the bonus functions
make re
The following command builds the complete library, also with the bonus functions
make bre
For testing the library with the main, use these commands:
MacOS:
gcc -Wall -Werror -Wextra -L . -lft main_libft.c
GNU/Linux:
gcc main_libft.c -L. -lft