8000 GitHub - KutayKoray/libft: 📚 My very first own library.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

KutayKoray/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libft badge

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

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

About

📚 My very first own library.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0