Libft is the first project in the study program at School 42 (UNIT Factory). The purpose of the project is to introduce to students standard C functions that we will be able to use in our future projects. To give a deeper understanding of functions we needed to create our own realization of standard functions.
All functions are created in accordance with Norm - the bunch of rules how code should be formatted.
!NOTE
Because of 42 School norm requirements:
- All variables are declared and aligned at the top of each function
- Each function can't have more then 25 lines of code
- C++ style code commenting is forbidden
- Project should be created just with allowed functions otherwise it's cheating.
- Standart Libc functions
- Additional functions
- Bonus part functions
In bonus part, there are functions proposed in the task and some personal functions that I decided to create.
Using Makefile you can create library file libft.a
Makefile has 4 main options:
- make - to compile C files - create object files and library libft.a
- make clean - to remove object files
- make fclean - remove libft.a file
- make re - recompile the library
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 |