An open API service indexing awesome lists of open source software.

https://github.com/cypri1-dev/42_libft

Libft is a C library containing a collection of common functions to aid in C programming. These functions include string manipulations, memory manipulations, operations on linked lists, etc.
https://github.com/cypri1-dev/42_libft

bonus libft libft-42 libft42 mandatory

Last synced: 4 months ago
JSON representation

Libft is a C library containing a collection of common functions to aid in C programming. These functions include string manipulations, memory manipulations, operations on linked lists, etc.

Awesome Lists containing this project

README

        

##

## Description
Libft is a C library containing a collection of common functions to aid in C programming. These functions include string manipulations, memory manipulations, operations on linked lists, etc.

## Contents
The library includes the following main categories:

- **String Manipulation (`ft_strlen`, `ft_strcpy`, `ft_strcat`, etc.)**
- **Memory Manipulation (`ft_memset`, `ft_bzero`, `ft_memcpy`, etc.)**
- **Linked Lists (`ft_lstnew`, `ft_lstadd_front`, `ft_lstsize`, etc.)**
- **Type Conversion (`ft_atoi`, `ft_itoa`, etc.)**
- **Math Operations (`ft_abs`, `ft_pow`, etc.)**
- **And much more.**

## Installation and compilation
1. Clone this repository into your project:
```bash
git clone https://github.com/cypri1-dev/42_libft.git
```
2. Run the following command:
```bash
make
```
3. with bonus:
```bash
make bonus
```