towlower, _wcslwr

2010. 10. 3. 01:38Programming

tolower - 주어진 대문자 char 문자를 소문자로 만들어 반환한다.
toupper - 마찬가지. 대문자로 반환한다.

당연하다면... 당연하겠지만 다음과 같이.

TCHAR.H routine

_UNICODE & _MBCS not defined

_MBCS defined

_UNICODE defined

_totlower

tolower

_mbctolower

towlower

_totlower_l

_tolower_l

_mbctolower_l

_towlower_l


_wcslwr - 주어진 문자열의 문자들을 모두 소문자로 변환하여 리턴.
_wcsupr - 마찬가지. 대문자의 문자열을 반환.

TCHAR.H routine

_UNICODE & _MBCS not defined

_MBCS defined

_UNICODE defined

_tcslwr

_strlwr

_mbslwr

_wcslwr

_tcslwr_l

_strlwr_l

_mbslwr_l

_wcslwr_l


MSDN에서 그대로 긁어왔다...

'Programming' 카테고리의 다른 글

태국 날짜 간단히 확인하는 법  (0) 2014.04.30
맥 OSX에서 sublime text3 기본 셋팅하기  (0) 2014.04.29
JSON File Format  (0) 2014.04.18
cocos2d 3.0 쉬운 튜토리얼  (0) 2014.04.09
실수의 표현방법  (0) 2011.04.04