The SEDRIS Data Representation Model
APPENDIX D - Functions
SE CompareElementTypes
extern int
SE_CompareElementTypes
(
const SE_Element_Type  *a_ptr,1
const SE_Element_Type  *b_ptr2
);

Definition

When comparing:

elements with different code_types: compares code_types

elements with the same code_type: compares code values


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 pointer to 1st SE_Element_Type to be compared

2 pointer to 2nd SE_Element_Type to be compared


Prev: SE_CompareCountIntervalValues. Next: SE_CompareIntegerIntervalValues. Up:Index.