My own C library at 42Born2Code.
For more details look at the subject.
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);
}
This project is licensed under the MIT License - see the LICENSE.md file for details.