The
.Fn imaxdiv
function computes the value of
-.Fa numer
+.Fa numer ,
divided by
-.Fa denom
-and returns the stored result in the form of the
+.Fa denom .
+The stored result is returned in the form of the
.Vt imaxdiv_t
type.
.Pp
type is defined as:
.Bd -literal -offset indent
typedef struct {
- intmax_t quot; /* Quotient. */
+ intmax_t quot; /* Quotient. */
intmax_t rem; /* Remainder. */
} imaxdiv_t;
.Ed