IDEClearOutput Add-In just clear poide Output window.
SelCStrLen Add-In display length of selected text to Output in two ways, first in chars, second in bytes.
Useful with const char string with escape chars, length counted using functionint CountCChars(TCHAR *pStr)
{
int len = 0;
while (*pStr) {
if (*pStr == '\"' || *pStr == '\n') {
pStr++;
continue;
}
if (*pStr == '\\')
pStr++;
len++;
pStr++;
}
return len;
}