The ifx_int8div() function

The ifx_int8div() function divides two int8 type values.

Syntax

mint ifx_int8div(n1, n2, quotient)
   ifx_int8_t *n1;
   ifx_int8_t *n2;
   ifx_int8_t *quotient;
n1
A pointer to the int8 structure that contains the dividend.
n2
A pointer to the int8 structure that contains the divisor.
quotient
A pointer to an int8 structure to contain the quotient of n1/n2.

Usage

The quotient value can be the same as the value of either n1 or n2.

Return values

0
The operation was successful.
-1202
The operation attempted to divide by zero.