-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_tolower.c
18 lines (17 loc) · 980 Bytes
/
ft_tolower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vbrazas <vbrazas@student.unit.ua> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/03 22:24:54 by vbrazas #+# #+# */
/* Updated: 2017/11/03 22:25:39 by vbrazas ### ########.fr */
/* */
/* ************************************************************************** */
int ft_tolower(int c)
{
if ((c >= 'A' && c <= 'Z'))
return (c + 32);
return (c);
}