This repository contains a custom implementation of the C Standard Library, focusing on providing a comprehensive set of functions for string manipulation, memory management, and additional utility functions. The library is designed to be lightweight and efficient, making it suitable for embedded systems or environments where the standard library is not available or where minimal dependencies are preferred.
Function | Description |
---|---|
memset | fill a byte string with a byte value |
bzero | write zeroes to a byte string |
memcpy | copy memory area |
memmove | copy byte string |
memchr | locate byte in byte string |
memcmp | compare byte string |
strlen | find length of string |
strdup | save a copy of a string |
strcpy | copy strings |
strncpy | copy strings size of n |
strcat | concatenate strings |
strncat | concatenate n symbols of one string to another |
strlcat | size-bounded string copying and concatenation |
strchr | locate character in string |
strrchr | locate character in string |
strstr | locate a substring in a string |
strnstr | locate a substring in a string |
strncmp | compare strings |
atoi | convert ASCII string to integer |
isalpha | alphabetic character test |
isdigit | decimal-digit character test |
isalnum | alphanumeric character test |
isascii | test for ASCII character |
isprint | printing character test (space character inclusive) |
toupper | lower case to upper case letter conversion |
tolower | upper case to lower case letter conversion |
Function | Description |
---|---|
ft_memalloc | allocates (with malloc(3)) and returns a “fresh” memory area. The memory allocated is initialized to 0. If the allocation fails, the function returns NULL |
ft_memdel | takes as a parameter the address of a memory area that needs to be freed with free(3), then puts the pointer to NULL |
ft_strnew | allocates (with malloc(3)) and returns a “fresh” string ending with ’\0’. Each character of the string is initialized at ’\0’. If the allocation fails the function returns NULL |
ft_strdel | takes as a parameter the address of a string that need to be freed with free(3), then sets its pointer to NULL |
ft_strclr | sets every character of the string to the value ’\0’ |
ft_striter | applies the function f to each character of the string passed as argument. Each character is passed by address to f to be modified if necessary |
ft_striteri | applies the function f to each character of the string passed as argument, and passing its index as first argument. Each character is passed by address to f to be modified if necessary |
ft_strmap | applies the function f to each character of the string given as argument to create a “fresh” new string (with malloc(3)) resulting from the successive applications of f |
ft_strmapi | applies the function f to each character of the string passed as argument by giving its index as first argument to create a “fresh” new string (with malloc(3)) resulting from the successive applications of f |
ft_strequ | lexicographical comparison between s1 and s2. If the 2 strings are identical the function returns 1, or 0 otherwise. |
ft_strnequ | lexicographical comparison between s1 and s2 up to n characters or until a ’\0’ is reached. If the 2 strings are identical, the function returns 1, or 0 otherwise |
ft_strsub | allocates (with malloc(3)) and returns a “fresh” substring from the string given as argument. The substring begins at indexstart and is of size len. If start and len aren’t refering to a valid substring, the behavior is undefined. If the allocation fails, the function returns NULL |
ft_strjoin | allocates (with malloc(3)) and returns a “fresh” string ending with ’\0’, result of the concatenation of s1 and s2. If the allocation fails the function returns NULL |
ft_strtrim | allocates (with malloc(3)) and returns a copy of the string given as argument without whitespaces at the beginning or at the end of the string. Will be considered as whitespaces the following characters ’ ’, ’\n’ and ’\t’. If s has no whitespaces at the beginning or at the end, the function returns a copy of s. If the allocation fails the function returns NULL |
ft_strsplit | allocates (with malloc(3)) and returns an array of “fresh” strings (all ending with ’\0’, including the array itself) obtained by spliting s using the character c as a delimiter. If the allocation fails the function returns NULL. Example: ft_strsplit(" hello fellow students ", ’ ’) returns the array ["hello", "fellow", "students"] |
ft_itoa | allocate (with malloc(3)) and returns a “fresh” string ending with ’\0’ representing the integer n given as argument. Negative numbers must be supported. If the allocation fails, the function returns NULL |
ft_putchar | outputs the character c to the standard output |
ft_putstr | outputs the string s to the standard output |
ft_putendl | outputs the string s to the standard output followed by a ’\n’ |
ft_putnbr | outputs the integer n to the standard output |
ft_putchar_fd | outputs the char c to the file descriptor fd |
ft_putstr_fd | outputs the string s to the file descriptor fd |
ft_putendl_fd | outputs the string s to the file descriptor fd followed by a ’\n’ |
ft_putnbr_fd | outputs the integer n to the file descriptor fd |
Function | Description |
---|---|
ft_lstnew | allocates (with malloc(3)) and returns a “fresh” link. The variables content and content_size of the new link are initialized by copy of the parameters of the function. If the parameter content is nul, the variable content is initialized to NULL and the variable content_size is initialized to 0 even if the parameter content_size isn’t. The variable next is initialized to NULL. If the allocation fails, the function returns NULL |
ft_lstdelone | takes as a parameter a link’s pointer address and frees the memory of the link’s content using the function del given as a parameter, then frees the link’s memory using free(3). The memory of next must not be freed under any circumstance. Finally, the pointer to the link that was just freed must be set to NULL (quite similar to the function ft_memdel in the mandatory part) |
ft_lstdel | takes as a parameter the adress of a pointer to a link and frees the memory of this link and every successors of that link using the functions del and free(3). Finally the pointer to the link that was just freed must be set to NULL (quite similar to the function ft_memdel from the mandatory part) |
ft_lstadd | adds the element new at the beginning of the list |
ft_lstiter | iterates the list lst and applies the function f to each link |
ft_lstmap | iterates a list lst and applies the function f to each link to create a “fresh” list (using malloc(3)) resulting from the successive applications of f. If the allocation fails, the function returns NULL |