Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

flmarsou/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🦊 What is Libft?

Libft is the foundational project in the 42 Cursus.

The objective of this project is to create your own C library by implementing a collection of basic and essential functions.
It will help you understand the basic of C, Headers, Makefiles, and Norms.

⚒️ Compilation

  1. Run make to compile the library.
  2. Run make re to recompile everything.

After compiling, you can include this library in any of your future projects.

🧼 Cleaning

  1. Run make clean to remove every object files.
  2. Run make fclean to remove every object files, including the library.

📑 List of Functions

Functions from <ctype.h>

  • ft_isalnum - Checks for an alphabetic or a digit character.
  • ft_isalpha - Checks for an alphabetic character.
  • ft_isascii - Checks for an ASCII character.
  • ft_isdigit - Checks for a digit character.
  • ft_isprint - Checks for a printable character
  • ft_tolower - Converts a character its lowercase equivalent.
  • ft_toupper - Converts a character its upperercase equivalent.

Functions from <string.h>

Functions from <stdlib.h>

Non-Standard Functions

Bonus Functions

About

A library of useful functions for later projects.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published