We're reinventing the wheel, Ylib is a rewrite of the C standard library. It contains string type checking, memory management, etc...(continually updated)
The repository is still in the early stages of development, and the following is a list of functions that are in the process of being implemented
Status | Name | Description | Status | Name | Description |
---|---|---|---|---|---|
✅ | FT_IS | functions for checking character types | ✅ | FT_MEM | functions for memory management |
✅ | ft_isalpha | ✅ | ft_memset | ||
✅ | ft_isdigit | ✅ | ft_memmove | ||
✅ | ft_isalnum | ✅ | ft_memcpy | ||
✅ | ft_isascii | ✅ | ft_memcmp | ||
✅ | ft_isprint | ✅ | ft_memchr | ||
✅ | ft_calloc | ||||
✅ | ft_bzero | ||||
Status | Name | Description | Status | Name | Description |
✅ | FT_LST | functions that manipulating linked lists | ✅ | FT_STR | functions that are related to string |
✅ | ft_lstadd_back | ✅ | ft_strlen | ||
✅ | ft_lstadd_front | ✅ | ft_strlcpy | ||
✅ | ft_lstclear | ✅ | ft_strlcat | ||
✅ | ft_lstdelone | ✅ | ft_toupper | ||
✅ | ft_lstiter | ✅ | ft_tolower | ||
✅ | ft_lstlast | ✅ | ft_strchr | ||
✅ | ft_lstmap | ✅ | ft_strncmp | ||
✅ | ft_lstnew | ✅ | ft_strnstr | ||
✅ | ft_lstsize | ✅ | ft_atoi | ||
✅ | ft_strdup | ||||
Status | Name | Description | ✅ | ft_striteri | |
✅ | FT_PUT | functions for outputting characters and strings | ✅ | ft_strmapi | |
✅ | ft_putchar_fd | ✅ | ft_itoa | ||
✅ | ft_putstr_fd | ✅ | ft_split | ||
✅ | ft_putendl_fd | ✅ | ft_strtrim | ||
✅ | ft_putnbr_fd | ✅ | ft_strjoin | ||
✅ | ft_substr | ||||
✅ | ft_strrchr |