tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_tolower.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_tolower.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2023/10/23 13:41:03 by tgrekov #+# #+# */
9/* Updated: 2023/11/06 15:37:16 by tgrekov ### ########.fr */
10/* */
11/* ************************************************************************** */
12
28int ft_tolower(int c)
29{
30 if (c >= 'A' && c <= 'Z')
31 c += 32;
32 return (c);
33}
int ft_tolower(int c)
Convert uppercase letter to corresponding lowercase letter.
Definition ft_tolower.c:28