Dia Egg - Shugo Chara

C

tolower 함수의 구현

별ㅇI 2023. 10. 16. 19:21
728x90
반응형

tolower 함수

  • ctype.h 헤더파일에 속해 있는 함수
  • 원형은  int tolower(int c)를 따른다. 
  • 소문자로 바꾸는데 성공했다면 소문자의 정수모드를, 대문자가 아니라서 실패했다면 들어온 그대로를 리턴한다. 

tolower 함수의 구현

int	ft_tolower(int c)
{
	if (65 <= c && c <= 90)
		return (c + 32);
	else
		return (c);
}

// #include <ctype.h>
// #include <stdio.h>
// int	main(void)
// {
// 	printf("test1 : %c", tolower('a'));
// 	printf("\ntest1 : %c", ft_tolower('a'));
// 	printf("\ntest2 : %c", tolower('A'));
// 	printf("\ntest2 : %c", ft_tolower('A'));
// 	printf("\ntest3 : %d", tolower(200));
// 	printf("\ntest3 : %d", ft_tolower(200));
// }
728x90
반응형