-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_toupper.c
64 lines (56 loc) · 1.54 KB
/
ft_toupper.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuske <yuske@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/24 15:44:04 by yfurutat #+# #+# */
/* Updated: 2022/11/20 01:03:56 by yuske ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
// int main(void)
// {
// printf("%c\n", ft_toupper('s'));
// return (0);
// }
//1
// int ft_toupper(int i)
// {
// if (i >= 97 && i <= 122)
// i = i - 32;
// return (i);
// }
//2
// int ft_toupper(int i)
// {
// if (i >= 'a' && i <= 'z')
// i -= ' ';
// return (i);
// }
//3
//static int ft_islower(int c)
// {
// return (c >= 'a' && c <= 'z');
// }
// int ft_toupper(int i)
// {
// if (ft_islower(i))
// i -= ('a' - 'A');
// return (i);
// }
//4
int ft_toupper(int i)
{
if (i >= 'a' && i <= 'z')
i += ('A' - 'a');
return (i);
}
//5
// int ft_toupper(int i)
// {
// if (i >= 'a' && i <= 'z')
// i -= ('a' - 'A');
// return (i);
// }