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.
- Host: GitHub
- URL: https://github.com/carlosrocha-dev/libft
- Owner: carlosrocha-dev
- Created: 2022-06-02T16:07:25.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-22T01:51:59.000Z (about 2 years ago)
- Last Synced: 2025-01-30T11:10:01.798Z (4 months ago)
- Topics: 42, 42cursus, 42projects, 42school, libc, libft42
- Language: C
- Homepage:
- Size: 193 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

---
# 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