Skip to content

Latest commit

 

History

History
74 lines (60 loc) · 7.62 KB

README.md

File metadata and controls

74 lines (60 loc) · 7.62 KB

Libft

This project aims to redo a library of some functions in C that can be used in the next projects of Codam.

Compilation & Usage To compile the library, you can use the following commands:

  • make or make all - Compiles the library.
  • make clean - Removes the object files generated during compilation.
  • make fclean - Removes the compiled library and the object files.
  • make re - Performs a clean recompilation of the library.
  • make bonus - Compiles the library including the bonus part.

The Makefile uses the following compilation flags:

  • -Wall -Wextra -Werror - Enables additional warnings and treats warnings as errors.
  • -I. - Specifies the include directory for header files.

Functions included in library

Functions from <ctype.h>

Functions from <string.h>

Functions from <stdlib.h>

⭐ Bonus part - Linked lists functions <stdlib.h>