-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_tolower.c
24 lines (22 loc) · 1.03 KB
/
ft_tolower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_tolower.c :+: :+: */
/* +:+ */
/* By: farodrig <farodrig@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/27 11:19:49 by farodrig #+# #+# */
/* Updated: 2020/11/28 14:26:52 by farodrig ######## odam.nl */
/* */
/* ************************************************************************** */
/*
** Converts an upper-case letter to the corresponding lower-case letter.
*/
int ft_tolower(int c)
{
if ((c >= 65 && c <= 90))
{
c += 32;
}
return (c);
}