Compares wide character strings.
#include <string.h>
int wcscoll (WcString1, WcString2) const wchar_t *WcString1, *WcString2;
The wcscoll subroutine compares the two wide-character strings pointed to by the WcString1 and WcString2 parameters based on the collation values specified by the LC_COLLATE environment variable of the current locale.
Note: The wcscoll subroutine differs from the wcscmp subroutine in that the wcscoll subroutine compares wide characters based on their collation values, while the wcscmp subroutine compares wide characters based on their ordinal values. The wcscoll subroutine uses more time than the wcscmp subroutine because it obtains the collation values from the current locale.
The wcscoll subroutine may be unsuccessful if the wide character strings specified by the WcString1 or WcString2 parameter contains characters outside the domain of the current collating sequence.
WcString1 | Points to a wide-character string. |
WcString2 | Points to a wide-character string. |
The wcscoll subroutine returns the following values:
The wcscoll subroutine indicates error conditions by setting the errno global variable. However, there is no return value to indicate an error. To check for errors, the errno global variable should be set to 0, then checked upon return from the wcscoll subroutine. If the errno global variable is nonzero, an error occurred.
EINVAL | The WcString1 or WcString2 arguments contain wide-character codes outside the domain of the collating sequence. |
This subroutine is part of Base Operating System (BOS) Runtime.
The wcscmp subroutine.
National Language Support Overview for Programming, Subroutines Overview, Understanding Wide Character String Collation Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.