blob: 3346cc386443e2bf8d088dd253d8079c44ec6047 (
plain)
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
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_toupper.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/07 18:25:57 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 08:32:15 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
static int
ft_islower(int c)
{
if (c >= 97 && c <= 122)
return (1);
return (0);
}
int
ft_toupper(int c)
{
if (ft_islower(c))
return (c - 32);
return (c);
}
|