Skip to content
/ BFL Public

Big Function Library is a collection of C functions made from scratch.

Notifications You must be signed in to change notification settings

SrVariable/BFL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

sudo apt update
sudo apt install make \
                build-essential

Usage

Go to you project directory

cd /path/to/your/project

Clone the repository

git clone https://github.com/SrVariable/BFL.git

Compile the library and link it to your project

make -C BFL
gcc main.c -L./BFL -lBFL -I BFL/include

Note

Remember to include the header file in your project

#include "BFL.h"

int main(int argc, char **argv)
{
    ft_printf("Hello World\n");
    return (OK);
}

Contributing

If you find any bug or have any suggestion, please open an issue here.

About

Big Function Library is a collection of C functions made from scratch.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published