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

NAME

lldiv - returns quotient and remainder

CONTENTS

Library
Synopsis
Description
See Also
Standards
History

LIBRARY


.Lb libc

SYNOPSIS


.In stdlib.h lldiv_t lldiv "long long numer" "long long denom"

DESCRIPTION

The lldiv function computes the value of numer divided by denom and returns the stored result in the form of the
.Vt lldiv_t type.

The
.Vt lldiv_t type is defined as:
typedef struct {
long long quot; /* Quotient. */
long long rem; /* Remainder. */
} lldiv_t;

SEE ALSO

div(3), imaxdiv(3), ldiv(3), math(3)

STANDARDS

HISTORY

 
Created by Blin Media, 2008-2013