DESCRIPTION
The imaxdiv function computes the value of numer divided by denom and returns the stored result in the form of the
.Vt imaxdiv_t type. The
.Vt imaxdiv_t type is defined as:
typedef struct {
intmax_t quot; /* Quotient. */
intmax_t rem; /* Remainder. */
} imaxdiv_t;
SEE ALSO
div(3), ldiv(3), lldiv(3), math(3)
STANDARDS
HISTORY