#include "libft.h" int ft_tolower(int c) { if ('A' <= c && c <= 'Z') c += 32; return (c); }