Subject (v15): Libft en_subject
1- Clone this repository
git clone https://github.com/Kuninoto/42_Libft
2- Navigate to lvl_0_libft and run make
cd 42_Libft/lvl_0_libft
make
3- make clean
so that you don't keep those object files that you won't need anymore
make clean
4- Compile your main.c with your new libft.a
cc -Wall -Wextra -Werror main.c libft.a
make
or make all
- Makes libft.a
make bonus
- Makes libft.a with bonus functions (see Subject)
make clean
- Deletes all the resulting object files
make fclean
- Deletes libft.a and all the resulting object files
make re
- Deletes everything (object files and libft.a) and rebuilds libft.a
- Add their prototypes to libft.h
- Add their source files to lvl_0_libft
- Add their source file names to "LIB_SRCS" variable inside the Makefile
At 42School, almost every project must be written in accordance to the Norm, the schools' coding standard. As a result, the implementation of certain parts may appear strange and for sure had room for improvement.
Made by Nuno Carvalho (Kuninoto) | nnuno-ca@student.42porto.com