| 1234567891011121314151617181920212223 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_str_lower.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@student.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2018/09/23 22:51:32 by bchanot #+# #+# */
- /* Updated: 2018/10/14 03:23:59 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- char *ft_str_lower(char *src)
- {
- size_t i;
- i = -1;
- while (src[++i])
- src[i] = ft_tolower(src[i]);
- return (src);
- }
|