-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_tolower.c
28 lines (27 loc) · 1.11 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
25
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmalie <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/07 08:44:11 by mmalie #+# #+# */
/* Updated: 2024/11/14 09:33:54 by mmalie ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
* Implementation of tolower() from <ctype.h>: Converts an uppercase character
* to lowercase.
*/
int ft_tolower(int c)
{
if ((c >= 'A') && (c <= 'Z'))
{
return (c + ('a' - 'A'));
}
else
{
return (c);
}
}