https://github.com/srvariable/bfl
Big Function Library is a collection of C functions made from scratch.
https://github.com/srvariable/bfl
42 c library open-source
Last synced: about 1 year ago
JSON representation
Big Function Library is a collection of C functions made from scratch.
- Host: GitHub
- URL: https://github.com/srvariable/bfl
- Owner: SrVariable
- Created: 2023-10-04T09:49:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-10T12:00:39.000Z (over 1 year ago)
- Last Synced: 2024-07-10T14:08:08.536Z (over 1 year ago)
- Topics: 42, c, library, open-source
- Language: C
- Homepage:
- Size: 176 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BFL
## Description
Big Function Library is a UNIX collection of functions made from scratch.
It uses the libraries _stdarg.h_, _stddef.h_, _stdlib.h_ and _unistd.h_.
## Requirements
- make
- gcc
> [!NOTE]
>
> Run this command to install the requirements
>
> ```Shell
> sudo apt update
> sudo apt install make \
> build-essential
> ```
## Usage
Go to you project directory
```Shell
cd /path/to/your/project
```
Clone the repository
```Shell
git clone https://github.com/SrVariable/BFL.git
```
Compile the library and link it to your project
```Shell
make -C BFL
gcc main.c -L./BFL -lBFL -I BFL/include
```
> [!NOTE]
>
> Remember to include the header file in your project
>
> ```C
> #include "BFL.h"
>
> int main(int argc, char **argv)
> {
> ft_printf("Hello World\n");
> return (BFL_OK);
> }
> ```
## Contributing
If you find any bug or have any suggestion, please open an issue
[here](https://github.com/SrVariable/BFL/issues/new).