/Libft

My own C library at 42Born2Code

Primary LanguageCMIT LicenseMIT

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.