std::wcscmp
From cppreference.com
| Defined in header <cwchar>
|
||
| int wcscmp( const wchar_t* lhs, const wchar_t* rhs ); |
||
Compares two null-terminated wide strings lexicographically.
The sign of the result is the sign of the difference between the values of the first pair of wide characters that differ in the strings being compared.
The behavior is undefined if lhs or rhs are not pointers to null-terminated wide strings.
Contents |