-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_tolower_main.c
More file actions
23 lines (19 loc) · 1.05 KB
/
Copy pathft_tolower_main.c
File metadata and controls
23 lines (19 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tolower_main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: muhozkan <muhozkan@student.42.tr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/25 23:49:03 by muhozkan #+# #+# */
/* Updated: 2022/02/25 23:49:03 by muhozkan ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
int ft_tolower(int ch);
int main(void)
{
printf("%d\n", tolower('c')); //test icin
printf("%d\n", ft_tolower('c'));
printf("********\n");
}