Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/string/wide/wcsncmp"

From cppreference.com
< cpp‎ | string‎ | wide
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/dcl list wcscmp}}
+
{{dsc inc | cpp/string/wide/dsc wcscmp}}
{{dsc inc | cpp/string/wide/dcl list wmemcmp}}
+
{{dsc inc | cpp/string/wide/dsc wmemcmp}}
{{dsc inc | cpp/string/wide/dcl list wcscoll}}
+
{{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

See also

compares two wide strings
(function) [edit]
compares a certain amount of wide characters from two arrays
(function) [edit]
compares two wide strings in accordance to the current locale
(function) [edit]
C documentation for wcsncmp