:man| Alphabetical   Categories   About us 
 
IMAXDIV (3) | C library functions | Unix Manual Pages | :man

NAME

imaxdiv - returns quotient and remainder

CONTENTS

Library
Synopsis
Description
See Also
Standards
History

LIBRARY


.Lb libc

SYNOPSIS


.In inttypes.h imaxdiv_t imaxdiv "intmax_t numer" "intmax_t denom"

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

 
Created by Blin Media, 2008-2013