|
The ifx_int8cmp() function compares two int8 type numbers.
n1 | is a pointer to the int8 structure that contains the first number to compare. |
n2 | is a pointer to the int8 structure that contains the second number to compare. |
| -1 | The first value is less than the second value. |
| 0 | The two values are identical. |
| 1 | The first value is greater than the second value. |
| INT8UNKNOWN | Either value is null. |
The file int8cmp.ec in the demo directory contains the following sample program.