Skip to content
/ libft Public

📚 My very first own library.

Notifications You must be signed in to change notification settings

lareii/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libft badge

libft

norminette

📚 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

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.

#include "libft.h"

int main(void)
{
    ft_putstr_fd("Hello, World!\n", 1);
    return (0);
}
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.