Skip to content

fedefloris/Libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.