The aim of this project is to code a library in C language regrouping usual functions used in other projects. Here is the list of the full library:
to note, functions are progressively added in the coming week
ft_atoi: ASCII TO Integer, convert the string argumentstrto integer (inttype) and return it.bzero: Bytes set to zero function sets the firstnbytes of the memory area pointed to bysto zero.calloc: Contiguous Allocation allocates a block of memory for an array of specified elements, initializes it to zero, and returns a pointer to the first element.ft_isalnum: Is Alphanumeric, check if the character is alphanumeric and return1, if not return0.ft_isalpha: Is Alphabetic, check if the character is alphabetic and return1, if not return0.isascii: Checks if a given integercrepresents an ASCII character and returns1if true, otherwise returns0.isdigit: Checks if a given character (represented as an integerc) is a decimal digit, i.e., one of the characters '0' through '9'.isprint: Is printable checks if a given character is printable, including space, and returns 1 if true and 0 if false.ft_itoa: Integer TO ASCII, convert an integer to a string of characters.lstadd_backlstadd_frontlstclearlstdelonelstiterlstlastlstmaplstnewlstsizememchrmemcmpmemcpymemmovememsetft_putchar_fd: write the charactercon the file descriptorfd.ft_putendl_fd: write the stringsto the file descriptorfdand a new line.putnbr_fdputstr_fdsplitstrchrstrdupstriteristrlcatstrlcpystrlenstrmapistrncmpstrnstrstrrchrstrtrimsubstrft_tolower: if the character passed in argument is a capital letter, convert it to lowercase.ft_toupper: if the character passed in argument is a lowercase letter, convert it to uppercase.