The SEDRIS Data Representation Model
APPENDIX D - Functions SE CompareURNs |
---|
extern int | ||||
SE_CompareURNs | ||||
( | ||||
const | SE_URN | * | a_ptr, | (notes) |
const | SE_URN | * | b_ptr | (notes) |
); |
Compares 2 SE_URNs. This function's signature is compatible with qsort.
If the locales match, this is a string comparison; otherwise, the result is determined by the locale comparison.
-1 | if a_ptr is NULL and b_ptr is non-NULL, or *a_ptr < *b_ptr |
0 | if both arguments are NULL, or *a_ptr == *b_ptr |
1 | if b_ptr is NULL and a_ptr is non-NULL, or *a_ptr > *b_ptr |
handle to 1st SE_URN to be compared
handle to 2nd SE_URN to be compared
Prev: SE_CompareStrings.
Next: SE_ConvertColourDataToFields.
Up:Index.
|