Laendrun / 42-libft

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

42-libft

About the project

libft is the very first project of the 42 cursus.

This project is about coding a C library that will contain a lot of useful functions that your future programs will rely upon.

🔨 Compilation

  1. Run make to compile the library.
  2. You can then link it like any other library in you projects.

🧽 Cleaning

There's two way of cleaning :

  1. Simple clean that will only remove the object files : make clean
  2. Full clean that will remove object files as well as the library : make fclean

Available funcitons

Documentation with Doxygen will come at a later point in each file directly

In this version of the libft, I added some functions that could be used at one point or another.

Here's the full list of available functions:

About


Languages

Language:C 98.7%Language:Makefile 1.3%