https://github.com/babreton/42-libft
Create your own library
https://github.com/babreton/42-libft
42 42-libft 42cursus 42school babreton libft libft-42 libft42
Last synced: 2 months ago
JSON representation
Create your own library
- Host: GitHub
- URL: https://github.com/babreton/42-libft
- Owner: BaBreton
- Created: 2023-02-21T20:12:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-07T13:28:48.000Z (over 1 year ago)
- Last Synced: 2025-01-07T01:40:04.588Z (4 months ago)
- Topics: 42, 42-libft, 42cursus, 42school, babreton, libft, libft-42, libft42
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
![]()
![]()
# 42-Libft
Libft is a 42 school project that involves re-coding the basic functions of the C Language.
This Libft therefore contains the requested functions, as well as others for my personal use.## Installation
You can compile the libft with :
```bash
make
```
It will give you libft.a archive, which you can add to your project compilation with :```bash
-L/path_to_libft -lft
````