프로그래밍/C
2024. 5. 13.
[library] tolower 구현하기
📌 매뉴얼 (Linux)더보기NAME tolower - convert lowercase: 소문자로 바꾸기SYNOPSIS #include int tolower(int c);DESCRIPTION These functions convert uppercase letters to lowercase, and vice versa. If c is an uppercase letter, tolower() returns its lowercase equivalent, if a lowercase repre‐ sentation exists in the current locale. Otherwise, it returns c.: 이러한 기능은 대문자를 소문자로 변..