int32 PPStrCaseCmp(s1p, s2p);
Lexically compares two Pascal strings and determines whether one is less than, equal to, or greater than the other. This comparison ignores differences in case. This function is similar to PStrCaseCmp, except you pass the function handles to the string data instead of pointers.
Name | Type | Description |
---|---|---|
s1p | PStr * | Pointer to a Pascal string. |
s2p | PStr * | Pointer to a Pascal string. |
<0, 0, or >0 if s1p is less than, equal to, or greater than s2p, respectively. Returns <0 if s1p is an initial substring of s2p.