NAME
XmuCompareISOLatin1 − compare and determine order of two strings, ignoring case.
SYNOPSIS
#include <X11/Xmu/CharSet.h>
int XmuCompareISOLatin1(first, second)
char ∗first, ∗second;
Inputs
firstSpecifies a string to compare.
secondSpecifies a string to compare.
Returns
An integer that specifies whether first is less than, equal to, or greater than second.
DESCRIPTION
XmuCompareISOLatin1() compares two NULL terminated Latin-1 strings, ignoring case differences, and returns an integer greater than, equal to, or less than zero, according to whether first is lexicographically greater than, equal to, or less than second. The two strings are assumed to be encoded using ISO 8859-1 (Latin-1).
USAGE
This function is useful in resource converters that convert between strings and enumerated types.