Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.3 KB

README.md

File metadata and controls

56 lines (36 loc) · 1.3 KB

libft A C Library

Overview

libft is a custom C library that provides a collection of functions covering fundamental operations in C programming. This library is designed to be reusable and serves as a helpful utility for various C projects.

Table of Contents

Getting Started

Prerequisites

  • A C compiler (e.g., GCC)
  • Make sure to have make installed for easy compilation (optional but recommended)

Installation

  1. Clone the repository:

    git clone https://github.com/lhaibadesigns/libft.git
    
  2. Build the library:

     cd libft
     make
    

Usage

  • To use libft in your C projects, include the libft.h header file and link against the compiled library (libft.a).

    #include "libft.h"
    
    int main() {
    // Your code using libft functions
    return 0;
    }

Documentation

  • Detailed documentation for each function in libft is provided in the libft.h header file.
  • You can also refer to the source code for implementation details.

License