Re-implementation of Standard C Library functions.
- gcc or Clang
- GNU Make
git clone https://github.com/tkomatsu/libft
make -c libft
Compiling with your source code.
gcc -I libft/includes <source code> -lft -L libft
example.c
#include "libft.h"
int main()
{
ft_putendl_fd("Hello world", STDOUT_FILENO);
return 0;
}
- Tatushiro Komatsu
This project is licensed under the MIT License - see the LICENSE file for details