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