fedefloris / Libft

My own C library at 42Born2Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

My own C library at 42Born2Code

License:MIT License


Languages

Language:C 97.2%Language:Makefile 2.8%