diff options
Diffstat (limited to 'ft_tolower.c')
| -rw-r--r-- | ft_tolower.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ft_tolower.c b/ft_tolower.c index 31e848f..c81b9ef 100644 --- a/ft_tolower.c +++ b/ft_tolower.c @@ -6,10 +6,12 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/04 21:49:28 by dkaiser #+# #+# */ -/* Updated: 2024/03/06 11:49:49 by dkaiser ### ########.fr */ +/* Updated: 2024/03/10 13:15:39 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ +#include "libft.h" + int ft_tolower(int c) { if (c >= 'A' && c <= 'Z') |
