Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 806 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 806 Bytes

Libft - 42Born2Code

Codacy Badge

Challenge

My own C library at 42Born2Code.

For more details look at the subject.

Using the project

git clone https://github.com/fedefloris/Libft.git && cd Libft && make

Now you should see libft.a in the root folder.

gcc your_file.c libft.a -I includes

Example of your_file.c:

#include "libft.h"

int main(void)
{
  ft_printf("Hello %d\n", 42);
  return (0);
}

License

This project is licensed under the MIT License - see the LICENSE.md file for details.