Libft(22) - tolower
Libft(22) - tolower TOLOWER(3) BSD Library Functions Manual TOLOWER(3) NAME tolower, tolower_l -- upper case to lower case letter conversion LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int tolower(int c); #include #include int tolower_l(int c, locale_t loc); DESCRIPTION The tolower() function converts an upper-case letter to the corresponding lower-case let- ter. The argument must b..
2021.06.26