Projet de l'école 42 : Libft
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
narnaud 0b8570ebd3 Orga 3 years ago
conv Orga 3 years ago
is Orga 3 years ago
lst Orga 3 years ago
mem Orga 3 years ago
nbr Orga 3 years ago
put Orga 3 years ago
str Orga 3 years ago
.gitignore Initial commit 3 years ago
LICENSE Initial commit 3 years ago
Makefile Orga 3 years ago
README.md Orga 3 years ago
ft_atoi.c First release 3 years ago
ft_bzero.c First release 3 years ago
ft_calloc.c First release 3 years ago
ft_isalnum.c First release 3 years ago
ft_isalpha.c First release 3 years ago
ft_isascii.c First release 3 years ago
ft_isdigit.c First release 3 years ago
ft_isprint.c First release 3 years ago
ft_itoa.c added printf functions 3 years ago
ft_itox.c added printf functions 3 years ago
ft_lstadd_back_bonus.c First release 3 years ago
ft_lstadd_front_bonus.c First release 3 years ago
ft_lstclear_bonus.c First release 3 years ago
ft_lstdelone_bonus.c First release 3 years ago
ft_lstiter_bonus.c First release 3 years ago
ft_lstlast_bonus.c First release 3 years ago
ft_lstmap_bonus.c First release 3 years ago
ft_lstnew_bonus.c First release 3 years ago
ft_lstsize_bonus.c First release 3 years ago
ft_memchr.c First release 3 years ago
ft_memcmp.c First release 3 years ago
ft_memcpy.c First release 3 years ago
ft_memmove.c First release 3 years ago
ft_memset.c First release 3 years ago
ft_nbrlen.c added printf functions 3 years ago
ft_putchar_fd.c First release 3 years ago
ft_putendl_fd.c First release 3 years ago
ft_putnbr_fd.c First release 3 years ago
ft_putstr_fd.c First release 3 years ago
ft_split.c First release 3 years ago
ft_strchr.c First release 3 years ago
ft_strdup.c First release 3 years ago
ft_striteri.c First release 3 years ago
ft_strjoin.c First release 3 years ago
ft_strlcat.c First release 3 years ago
ft_strlcpy.c First release 3 years ago
ft_strlen.c First release 3 years ago
ft_strmapi.c First release 3 years ago
ft_strncmp.c First release 3 years ago
ft_strnstr.c First release 3 years ago
ft_strrchr.c First release 3 years ago
ft_strrev.c added printf functions 3 years ago
ft_strtrim.c First release 3 years ago
ft_substr.c First release 3 years ago
ft_tolower.c First release 3 years ago
ft_toupper.c First release 3 years ago
ft_utoa.c added printf functions 3 years ago
libft.h added printf functions 3 years ago

README.md

Libft

42 school project.

Available functions :

Characters check [is]:

Function Description Optimized
ft_isalpha is it a letter ? [ ]
ft_isdigit is it a a digit ? [ ]
ft_isalnum is it a a letter or digit ? [ ]
ft_isascii is it a an ascii ? [ ]
ft_isprint is it printable ? [ ]
ft_isspace is it a space character ? [ ]
ft_isupper is it an uppercase ? [ ]
ft_islower is it a lowercase ? [ ]

Conversions [conv]:

Function Description Optimized
ft_atoi Convert a string to an integer [ ]
ft_itoa Convert an integer to a string [ ]
ft_utoa Convert an unsigned to a string [ ]
ft_itox Convert an intger to his hexa string [ ]
ft_toupper Convert a letter to upper [ ]
ft_tolower Convert a letter to lower [ ]

Strings manipulation [str]:

Function Description Optimized
ft_split Slit a spring by separator [ ]
ft_strchr Search for a char into string [ ]
ft_strdup Duplicate a string [ ]
ft_striteri Iterate function on a string pointers [ ]
ft_strjoin Join two strings [ ]
ft_strlcat Concat substr to another [ ]
ft_strlcpy Copy a n char of a string in another [ ]
ft_strlen Get length of a string [ ]
ft_strmapi Get returns of function on a string chars. [ ]
ft_strncmp Compare two strings [ ]
ft_strnstr Search a string into another [ ]
ft_strrchr Reverse search a char in a string [ ]
ft_strrev Reverse a string [ ]
ft_strtrim Trim a string using charsset [ ]
ft_substr Return a copy of a sub string [ ]

Numbers manipulation [nbr]:

Function Description Optimized
ft_nbrlen Get the number length [ ]

Memory manipulation [mem]:

Function Description Optimized
ft_bzero [ ]
ft_calloc [ ]
ft_memchr [ ]
ft_memcmp [ ]
ft_memcpy [ ]
ft_memmove [ ]
ft_memset [ ]

Display [put]:

Function Description Optimized
ft_putchar_fd [ ]
ft_putstr_fd [ ]
ft_putnbr_fd [ ]
ft_putendl [ ]