This library is my first finished project on my road to program development. I wrote this library when I was taking a C course for beginners at Mado-Robin Paris.
ft_strlen.c- Calculate string lengthft_strcopy.c- Copy a stringft_strcomp.c- Compare two stringsft_strdup.c- Duplicate a stringft_strjoin.c- Join two stringsft_strchr.c- Find character in stringft_split.c- Split string by delimiterft_atoi.c- String to integerft_toupper.c- Char to uppercaseft_tolower.c- Char to lowercaseft_freetab.c- Free memory of a string arrayft_putchar.c- Print a characterft_putstr.c- Print a stringft_putchar_fd.c- Print char to file descriptorft_putstr_fd.c- Print string to file descriptorget_next_line.c- Read file line by line
Run make to compile the library.