https://github.com/lareii/libft
📚 My very first own library.
https://github.com/lareii/libft
42 42born2code 42cursus 42projects 42school libft libft-1337 libft-42 libft42
Last synced: 5 months ago
JSON representation
📚 My very first own library.
- Host: GitHub
- URL: https://github.com/lareii/libft
- Owner: lareii
- Created: 2024-10-19T17:16:30.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-11-25T08:55:26.000Z (10 months ago)
- Last Synced: 2025-03-30T19:22:23.719Z (6 months ago)
- Topics: 42, 42born2code, 42cursus, 42projects, 42school, libft, libft-1337, libft-42, libft42
- Language: C
- Homepage:
- Size: 43.9 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
libft

📚 My very first own library.
## About
This repository contains my solutions for the **libft** project in 42.The **libft** project is the very first project in the 42 curriculum. The goal of this project is to create a library of useful functions that will be used in future projects.
## Installation & Usage
### Installation
```bash
git clone https://github.com/lareii/libft.git
cd libft
make
```### Usage
To use the library in your project, include the header file `libft.h` in your source files and compile your project with the library `libft.a`.```c
#include "libft.h"int main(void)
{
ft_putstr_fd("Hello, World!\n", 1);
return (0);
}
``````bash
gcc -Wall -Wextra -Werror -I. -L. -lft your_file.c -o your_program
```## Contributing
Contributions are welcome! If you would like to contribute to this project, please open a pull request.