Difference between revisions of "cpp/string/wide/wcsncmp"
From cppreference.com
m (Shorten template names. Use {{lc}} where appropriate.) |
m (Update links.) |
||
Line 29: | Line 29: | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/string/wide/ | + | {{dsc inc | cpp/string/wide/dsc wcscmp}} |
− | {{dsc inc | cpp/string/wide/ | + | {{dsc inc | cpp/string/wide/dsc wmemcmp}} |
− | {{dsc inc | cpp/string/wide/ | + | {{dsc inc | cpp/string/wide/dsc wcscoll}} |
{{dsc see c | c/string/wide/wcsncmp}} | {{dsc see c | c/string/wide/wcsncmp}} | ||
{{dsc end}} | {{dsc end}} |
Revision as of 22:27, 31 May 2013
Defined in header <cwchar>
|
||
int wcsncmp( const wchar_t* lhs, const wchar_t* rhs, size_t count ); |
||
Compares at most count
wide characters of two null-terminated wide strings. The comparison is done lexicographically.
Contents |
Parameters
lhs, rhs | - | pointers to the null-terminated wide strings to compare |
count | - | maximum number of characters to compare |
Return value
Negative value if lhs
is less than rhs
.
0 if lhs
is equal to rhs
.
Positive value if lhs
is greater than rhs
.
Example
This section is incomplete Reason: no example |
See also
compares two wide strings (function) | |
compares a certain amount of wide characters from two arrays (function) | |
compares two wide strings in accordance to the current locale (function) | |
C documentation for wcsncmp
|