-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_tolower.c
18 lines (17 loc) · 986 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: akassil <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/29 13:56:41 by akassil #+# #+# */
/* Updated: 2018/05/02 16:06:27 by akassil ### ########.fr */
/* */
/* ************************************************************************** */
int ft_tolower(int c)
{
if ('A' <= c && c <= 'Z')
return (c - ('A' - 'a'));
return (c);
}