On 14.09.2015 12:25, Jactry Zeng wrote:
for (i = 0; i < len; i++)
{
WCHAR tmp = bufferW[i];
if (isalphaW(tmp))
{
if (editor->bCaps)
bufferW[i] = toupperW(tmp);
else
bufferW[i] = tolowerW(tmp);
}
}
Hi, won't struprW/strlwrW work here? I don't see why isalphaW check is important.