Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/namorgha/libft
This repository features custom implementations of various C library functions, providing insights into their underlying mechanics and usage.
https://github.com/namorgha/libft
42-school c-language libft makefile
Last synced: 4 days ago
JSON representation
This repository features custom implementations of various C library functions, providing insights into their underlying mechanics and usage.
- Host: GitHub
- URL: https://github.com/namorgha/libft
- Owner: Namorgha
- Created: 2023-01-12T10:50:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-05T02:39:12.000Z (3 months ago)
- Last Synced: 2024-08-05T03:56:48.175Z (3 months ago)
- Topics: 42-school, c-language, libft, makefile
- Language: C
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![olaser_libraries](https://github.com/user-attachments/assets/3cbd5d9d-e035-4a6b-8418-07a1b6ba5512)# lib- ft
---
libft is a custom C library project developed as part of the 42 Network curriculum. It consists of implementations for various standard C library functions, utilities, and additional helper functions that are commonly used in C programming.---
# Functions
### stdlib.h
- ft_atoi
- ft_calloc
- ft_itoa
### string.h- ft_bzero
- ft_strlen
- ft_strlcpy
- ft_strlcat
- ft_strdup
- ft_strchr
- ft_strrchr
- ft_strncmp
- ft_strnstr
- ft_memset
- ft_memmove
- ft_memcpy
- ft_memcmp
- ft_memchr
### ctype.h- ft_isalnum
- ft_isalpha
- ft_isprint
- ft_iascii
- ft_digit
- ft_tolower
- ft_toupper
### Other Functions- ft_lstadd_back
- ft_lstadd_front
- ft_lstnew
- ft_lstsize
- ft_lstlast
- ft_lstdelone
- ft_lstclear
- ft_lstiter
- ft_lstmap
- ft_split
- ft_strsub
- ft_putchar_fd
- ft_putstr_fd
- ft_putendl_fd
- ft_putnbr_fd
- ft_strjoin
- ft_strmapi
- ft_striteri
- ft_strmapi
- ft_strtrim
---