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.
- Host: GitHub
- URL: https://github.com/cypri1-dev/42_libft
- Owner: cypri1-dev
- Created: 2024-01-23T15:55:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-10T14:35:57.000Z (over 1 year ago)
- Last Synced: 2025-02-01T14:18:15.600Z (5 months ago)
- Topics: bonus, libft, libft-42, libft42, mandatory
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```