std::char_traits::compare

From cppreference.com
static int compare( const char_type* s1, const char_type* s2, std::size_t n );

Compares the first n characters of the character strings s1 and s2. The comparison is done lexicographically.

Contents

[edit] Parameters

s1, s2 - pointers to character strings to compare
n - the number of characters to compare from each character string

[edit] Return value

Negative value if s1 is less than s2.

0 if s1 is equal to s2.

Positive value if s1 is greater than s2.

[edit] Exceptions

(none)

[edit] Complexity

Linear.