Skip to content

Latest commit

 

History

History
21 lines (21 loc) · 1.57 KB

README.md

File metadata and controls

21 lines (21 loc) · 1.57 KB

libft

This project is a C library for using in the future School 21's projects.
According to rules, only basic built-in functions are used, such as: malloc, write, read.
Here you can find more detailed description.

Scenarios of compilation

  • make (compile)
  • make clean (delete object files left after compilation)
  • make fclean (delete object files and binary library file)
  • make re (recompile all project)

How to include into your project

gcc -I /libft_path/inc /libft_path/libft.a ...

Tests

All the code is written accoring to Norminette rules by School 21