20 lines
998 B
C
20 lines
998 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_tolower.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/12/01 15:58:52 by gtertysh #+# #+# */
|
|
/* Updated: 2016/12/01 15:59:14 by gtertysh ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_tolower(int c)
|
|
{
|
|
if (c >= 'A' && c <= 'Z')
|
|
return (c + 32);
|
|
return (c);
|
|
}
|