Divides 64-bit numerator by denominator, and computes the quotient and remainder.
#include <stdlib.h> lldiv_t lldiv (long64 numer, long64 denom);
numer
denom
The sign of the quotient is the same as that of the mathematical quotient. Its absolute value is the largest long integer that is less than the absolute value of the mathematical quotient.
lldiv is similar to ldiv and div, except that the arguments and the members of the returned structure are 64-bit long integers.
An lldiv_t structure, comprising both the quotient and the remainder, defined in stdlib.h
.
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 5.0 | intime/rt/include/stdlib.h | stdlib.h | clib.lib |