◐ Shell
clean mode source ↗

strcoll – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

definiert in Header

<string.h>

int strcoll( const char *lhs, const char *rhs );

Vergleicht zwei null-terminierte Byte-Strings nach dem aktuellen Gebietsschema als durch die LC_COLLATE Kategorie definiert .

Original:

Compares two null-terminated byte strings according to the current locale as defined by the LC_COLLATE category.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parameter

lhs, rhs -

Zeiger auf die null-terminierte Byte-Strings zu vergleichen

Original:

pointers to the null-terminated byte strings to compare

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Rückgabewert

Negativen Wert, wenn lhs ist weniger als rhs .

Original:

Negative value if lhs is less than rhs.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

0 wenn lhs ist gleich rhs .

Original:

0 if lhs is equal to rhs.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Positiven Wert, wenn lhs ist größer rhs .

Original:

Positive value if lhs is greater than rhs.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Beispiel

Siehe auch

vergleicht zwei Strings

Original:

compares two strings

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

vergleicht eine bestimmte Anzahl von Zeichen von zwei Zeichenfolgen

Original:

compares a certain amount of characters of two strings

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

vergleicht zwei Puffer

Original:

compares two buffers

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(Funktion) [edit]

C++ documentation for strcoll