https://github.com/trobert42/libft
My own library of C functions
https://github.com/trobert42/libft
Last synced: about 1 year ago
JSON representation
My own library of C functions
- Host: GitHub
- URL: https://github.com/trobert42/libft
- Owner: trobert42
- Created: 2024-02-22T17:14:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T17:22:56.000Z (over 2 years ago)
- Last Synced: 2025-02-16T06:44:49.371Z (over 1 year ago)
- Language: C
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C library functions
The libft is the first project in C aimed at introducing us to low-level programming. It's a library that contains all the practical standard functions we'll need for our future projects in the curriculum.
| Parts | List of functions |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Basic functions | isalpha, isdigit, isalnum, isascii, isprint, strlen, memset, bzero, memcpy, memmove, strlcpy, strlcat, toupper, tolower, strchr, strrchr, strncmp, memchr, memcmp, strnstr, atoi, calloc, strdup |
|
| More functions | ft_substr, ft_strjoin, ft_strtrim, ft_split, ft_itoa, ft_strmapi, ft_striteri, ft_putchar_fd, ft_putstr_fd, ft_putendl_fd,ft_putnbr_fd |
| Bonus | ft_lstnew, ft_lstadd_front, ft_lstsize, ft_lstlast, ft_lstadd_back, ft_lstdelone, ft_lstclear, ft_lstiter, ft_lstmap |