/libft

original c library for 42

Primary LanguageCMIT LicenseMIT

libft

Description

Re-implementation of Standard C Library functions.

Requirement

  • gcc or Clang
  • GNU Make

Usage

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;
}

Author

  • Tatushiro Komatsu

License

This project is licensed under the MIT License - see the LICENSE file for details