A C Lang library
A 42 School project to create a static library of useful clang functions. The library includes our own implementations of many c standard library functions and some additional ones. The library will be expanded as new functions are written.
Git clone the repository:
https://github.com/TimHopg/42-libft-Library-Forty-Two.git
Run make
from within the directory to archive the libft.a
static library file.
make clean
will remove object files.
make fclean
will remove library and object files.
To use include the libft.a
file in your project and include the libft.h
header in your source code.
Compile as follows:
cc main.c -L -lft -o main