Microsoft documentation shows both _tcsnicmp
and _tcsncicmp
(note the extra c
) as TCHAR.H equivalents of _strnicmp
for doing string comparisions. I'm not sure which one I should be using.
What is the difference between the two methods?
My best guess is that the nc
version takes a count in number of characters and the n
version takes a count in number of bytes.