Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 455 Bytes

File metadata and controls

27 lines (14 loc) · 455 Bytes

42-libft

The purpose of this project is code some libc functions, as well as other common utility functions to be reused in the following 42 projects.

Instructions

Compiling the library

$ cd 42-libft/ && make

Using it in your code

To use the library functions in your code, simply include its header:

#include  "libft.h"

Testing