For comparing strings in UNICODE versions is it advisable to use strcmp or _tcscmp?

Thanks in advance

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

_tcscmp() is a macro. If you define UNICODE it will use wcscmp(), otherwise it will use strcmp().

Note the types TCHAR, PTSTR, etc. are similar. They will be WCHAR and PWSTR if you define UNICODE, and CHAR and PSTR otherwise.

link|improve this answer
5  
That is incorrect. UNICODE drives the definition of wide character string in the Win32 API. i.e when you #include <windows.h>. _UNICODE drives the c-runtimes support for wide (and multi byte) characters, and has meaning when you #include <string.h> (or any of the other c-runtime headers). If _UNICODE is defined, _tcscmp will be wcscmp, else if _MBCS is defined, _tcscmp will be _mbcscmp, else it will be strcmp. – Chris Becke Jan 26 '10 at 19:24
@Chris Becke Hm, I did not know that. I usually define both (with leading underscore and without), and now it makes sense why that's necessary. :-) – asveikau Jan 26 '10 at 21:52
feedback

No, you should use _tcscmp . That will resolve to proper function depending upon on your compiler flags.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.