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
반응형
'C' 카테고리의 다른 글
strrchr 함수의 구현 (0) | 2023.10.16 |
---|---|
strchr 함수의 구현 (2) | 2023.10.16 |
toupper 함수의 구현 (0) | 2023.10.16 |
확장아스키코드와 맥과 윈도우 사이의 운영체계 문자표 (0) | 2023.10.16 |
strlcat 함수의 구현 (+strlcat 함수의 리턴값에 대해) (2) | 2023.10.16 |