/42libft

Creating a library in c.

Primary LanguageC


Markdownify
42-LIBFT

Your very first own library

DESCRIPTIONBUILT WITHINSTALLATIONUSAGE

DESCRIPTION

Libft is a library of C functions created as part of the curriculum at 1337/42. The library contains a collection of commonly used functions that can be utilized in various C programming projects. It aims to provide a solid foundation for C programming by implementing essential functions for string manipulation, memory allocation, linked lists, and more.

BUILT WITH

C

INSTALLATION

  1. Clone the repository to your local machine:
git clone https://github.com/st-yes/42libft.git
  1. Navigate to the library's directory:
cd 42libft
  1. Compile (with bonus)
make && make bonus

USAGE

  1. add the header file to your project
#include "libft.h"
  1. link the library during the compilation
gcc project.c libft.a -I ./Mandatory