Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.89 KB

README.md

File metadata and controls

58 lines (37 loc) · 1.89 KB

42-Libft-Complete

42-Libft-Complete

Introduction

This project combines my libft, ft_printf and get_next_line projects into a single library for easy use in other projects.

At 42 School, almost every project must be written in accordance to the Norm, the school's coding standard. As a result, the implementation of certain parts may appear strange and for sure had room for improvement.

⚡ Usage

To use this library, import the "include/libft.h" header into your files after compiling the library.

#include "include/libft.h"

🔌 Installation

To install the project, clone this repository :

$ git@github.com:julienhouyet/42-Libft.git

📦 Commands

To compile the library, run :

$ make

To re-compile the library :

$ make re

To wipes all object files :

$ make clean

To delete the library and all object files

$ make fclean