Content-type: text/html Man page of imaxdiv

imaxdiv

Section: Standard C Library Functions (3C)
Updated: 1 Nov 2003
Index Return to Main Contents
 

NAME

imaxdiv - return quotient and remainder  

SYNOPSIS

#include <inttypes.h>

imaxdiv_t imaxdiv(imaxdiv_t numer, imaxdiv_t denom);  

DESCRIPTION

The imaxdiv() function computes numer / denom and numer % denom in a single operation.  

RETURN VALUES

The imaxdiv() function returns a structure of type imaxdiv_t, comprising both the quotient and the remainder. The structure contains (in either order) the members quot (the quotient) and rem (the remainder), each of which has type intmax_t. If either part of the result cannot be represented, the behavior is undefined.  

ERRORS

No errors are defined.  

ATTRIBUTES

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPEATTRIBUTE VALUE
Interface StabilityStandard
MT-LevelMT-Safe

 

SEE ALSO

imaxabs(3C), attributes(5), standards(5)


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUES
ERRORS
ATTRIBUTES
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 02:37:25 GMT, October 02, 2010