ft_tolower

This commit is contained in:
Tanguy MAZE
2018-04-04 15:08:30 +02:00
parent dad84d85db
commit 8ef94d1275
2 changed files with 23 additions and 3 deletions

18
ft_tolower.c Normal file
View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/04 14:24:13 by tmaze #+# #+# */
/* Updated: 2018/04/04 14:24:34 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_tolower(int c)
{
return ((c >= 'A' && c <= 'Z') ? c + 32 : c);
}