Function NameShort Description
ft_isalphaChecks if character is alphabetic
ft_isdigitChecks if character is a digit
ft_isalnumChecks if character is alphanumeric
ft_isasciiChecks if character is in ASCII table
ft_isprintChecks if character is printable
ft_strlenCalculates string length
ft_memsetFills memory with a constant byte
ft_bzeroFills memory with zero bytes
ft_memcpyCopies memory area
ft_memmoveCopies memory area safely (handles overlap)
ft_strlcpyCopies string with size limitation
ft_strlcatConcatenates string with size limitation
ft_toupperConverts character to uppercase
ft_tolowerConverts character to lowercase
ft_strchrLocates first occurrence of character in string
ft_strrchrLocates last occurrence of character in string
ft_strncmpCompares two strings up to n characters
ft_memchrLocates byte in memory area
ft_memcmpCompares memory areas
ft_strnstrLocates substring in string with length limitation
ft_atoiConverts string to integer
ft_callocAllocates and zeros memory
ft_strdupCreates duplicate of string using malloc
ft_substrCreates substring from string
ft_strjoinConcatenates two strings
ft_strtrimTrims specified characters from string
ft_splitSplits string using delimiter character
ft_itoaConverts integer to string
ft_strmapiApplies function to each character with index
ft_striteriApplies function to each character with index (void)
ft_putchar_fdOutputs character to file descriptor
ft_putstr_fdOutputs string to file descriptor
ft_putendl_fdOutputs string with newline to file descriptor
ft_putnbr_fdOutputs integer to file descriptor

5 items under this folder.