-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_tolower.c
16 lines (15 loc) · 977 Bytes
/
ft_tolower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cyfermie <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/07 15:54:10 by cyfermie #+# #+# */
/* Updated: 2017/11/07 15:54:11 by cyfermie ### ########.fr */
/* */
/* ************************************************************************** */
int ft_tolower(int c)
{
return ((c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : (c));
}