21 lines
1000 B
C
21 lines
1000 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_tolower.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gbrochar <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2015/11/27 18:39:55 by gbrochar #+# #+# */
|
|
/* Updated: 2015/11/29 08:40:07 by gbrochar ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_tolower(int c)
|
|
{
|
|
if ((int)c >= 'A' && (int)c <= 'Z')
|
|
c += 32;
|
|
return (c);
|
|
}
|