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

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

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 |