Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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