Skip to content

Libft is my own implementation of the C standard library

Notifications You must be signed in to change notification settings

Ling-Lang/Libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Libft

Libft is the 42 implementation of the C standard library and some other functions

Installation

clone the repo run make and put libft.a & libft.h into your project folder.

git clone https://github.com/Ling-Lang/Libft.git
cd Libft
make

Usage

#include "libft.h"
#include <stdio.h>

int main()
{
    char *str = "Hello World";
    printf("%s is %i long", str, ft_strlen(str));
}

output:

Hello World is 11 long

This library also includes my own implementation of Printf

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

About

Libft is my own implementation of the C standard library

Topics

Resources

Stars

Watchers

Forks