The SEDRIS Data Representation Model
APPENDIX D - Functions
SE CompareCharacters
extern int
SE_CompareCharacters
(
const SE_Character  *a_ptr,1
const SE_Character  *b_ptr2
);

Definition

Compares two SE_Characters, on the assumption that they are defined by the same SE_Locale. This function's signature is compatible with qsort.


Returns

-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

Parameters Notes

1 handle to 1st SE_Character to be compared

2 handle to 2nd SE_Character to be compared


Prev: SE_CloneURN. Next: SE_CompareCountIntervalValues. Up:Index.