多字节字符集 unicode字符集

常用的一些宏,和原有的其多字节表示:
char		TCHAR
"..."		_T("...")
'.'		_T('.')
sizeof()	sizeof() / sizeof(TCHAR)	只有求字符个数时才需要修改

sprintf		_stprintf
strcpy		_tcscpy
strrchr		_tcsrchr
strupr		_tcsupr
strlen		_tcslen
_access		_taccess
atof		_tstof
atoi		_tstoi
strcmp		_tcscmp
sscanf		_stscanf
原文地址:https://www.cnblogs.com/taotaoland/p/5648718.html