rt/libft/ft_tolower.c

22 lines
1003 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: scebula <scebula@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/26 10:17:25 by scebula #+# #+# */
/* Updated: 2015/11/26 10:18:18 by scebula ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_tolower(int c)
{
if (65 <= c && c <= 90)
return (c + 32);
else
return (c);
}