This project is about coding a C library that contains a lot of general-purpose functions that C programs rely upon.
This project is about coding a C library. It contains a lot of general-purpose functions your programs will rely upon.
- List of functions
- Mandatory functions
- is_ :
ft_isdigit
ft_isalpha
ft_isalnum
ft_isascii
ft_isprint
- to_ :
ft_toupper
ft_tolower
- string(lib) :
ft_strlen
ft_strlcpy
ft_strlcat
ft_strchr
ft_strrchr
ft_strncmp
ft_strnstr
ft_atoi
ft_strdup
- string(non-lib) :
ft_substr
ft_strjoin
ft_strtrim
ft_itoa
ft_strmapi
ft_striteri
ft_split
- memory :
ft_memset
ft_bzero
ft_memcpy
ft_memmove
ft_memchr
ft_memcmp
ft_calloc
- put_ft :
ft_putchar_fd
ft_putstr_fd
ft_putendl_fd
ft_putnbr_fd
- is_ :
- Mandatory functions