From 9c64c9d253fa22b29005ec53dca6fedcead2ae6c Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Fri, 12 Apr 2024 18:51:50 +0200 Subject: Add libft and input handling --- libft/ft_tolower.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libft/ft_tolower.c (limited to 'libft/ft_tolower.c') diff --git a/libft/ft_tolower.c b/libft/ft_tolower.c new file mode 100644 index 0000000..c81b9ef --- /dev/null +++ b/libft/ft_tolower.c @@ -0,0 +1,20 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_tolower.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser = 'A' && c <= 'Z') + return (c + 32); + return (c); +} -- cgit v1.2.3