An open API service indexing awesome lists of open source software.

https://github.com/carlosrocha-dev/libft

This project is about understanding the way the standard functions works, implementing and learning to use them.
https://github.com/carlosrocha-dev/libft

42 42cursus 42projects 42school libc libft42

Last synced: about 2 months ago
JSON representation

This project is about understanding the way the standard functions works, implementing and learning to use them.

Awesome Lists containing this project

README

        



![libftm](https://github.com/carlosrocha-dev/libft/assets/3737837/2fbcfe73-abf2-48a4-b355-d17a5ffd6821)

---

# libft

This project is your very first project as a student at 42. You will need to recode a few functions of the C standard library as well as some other utility functions that you will use during your whole cursus.

## Introduction

C programming can be very tedious when one doesn’t have access to the highly useful
standard functions. This project is about understanding the way these functions work,
implementing and learning to use them. Your will create your own library. It will be
helpful since you will use it in your next C school assignments.
Take the time to expand your libft throughout the year. However, when working
on a new project, don’t forget to ensure the functions used in your library are allowed in
the project guidelines.

## functions

• isalpha
• isdigit
• isalnum
• isascii
• isprint
• strlen
• memset
• bzero
• memcpy
• memmove
• strlcpy
• strlcat
• toupper
• tolower
• strchr
• strrchr
• strncmp
• memchr
• memcmp
• strnstr
• atoi
• calloc
• strdup