-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_tolower.c
More file actions
16 lines (15 loc) · 961 Bytes
/
Copy pathft_tolower.c
File metadata and controls
16 lines (15 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gfoote <gfoote@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/03 22:12:03 by gfoote #+# #+# */
/* Updated: 2019/04/05 14:18:50 by gfoote ### ########.fr */
/* */
/* ************************************************************************** */
int ft_tolower(int c)
{
return ((c > 64 && c < 91) ? c + 32 : c);
}