Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 928 Bytes

README.md

File metadata and controls

39 lines (23 loc) · 928 Bytes

42-Libft

A C Lang library

libft_grade

Table of Contents

Introduction

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.

Installation

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.

Usage

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