1LDIV(3P)                   POSIX Programmer's Manual                  LDIV(3P)
2
3
4

PROLOG

6       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
7       implementation of this interface may differ (consult the  corresponding
8       Linux  manual page for details of Linux behavior), or the interface may
9       not be implemented on Linux.
10
11

NAME

13       ldiv, lldiv — compute quotient and remainder of a long division
14

SYNOPSIS

16       #include <stdlib.h>
17
18       ldiv_t ldiv(long numer, long denom);
19       lldiv_t lldiv(long long numer, long long denom);
20

DESCRIPTION

22       The functionality described on this reference page is aligned with  the
23       ISO C  standard.  Any  conflict between the requirements described here
24       and the ISO C standard is unintentional. This  volume  of  POSIX.1‐2008
25       defers to the ISO C standard.
26
27       These  functions  shall compute the quotient and remainder of the divi‐
28       sion of the numerator numer by the denominator denom.  If the  division
29       is  inexact, the resulting quotient is the long integer (for the ldiv()
30       function) or long long integer (for the  lldiv()  function)  of  lesser
31       magnitude  that is the nearest to the algebraic quotient. If the result
32       cannot  be  represented,  the   behavior   is   undefined;   otherwise,
33       quot * denom+rem shall equal numer.
34

RETURN VALUE

36       The ldiv() function shall return a structure of type ldiv_t, comprising
37       both the quotient and the remainder. The structure  shall  include  the
38       following members, in any order:
39
40           long   quot;    /* Quotient */
41           long   rem;     /* Remainder */
42
43       The lldiv() function shall return a structure of type lldiv_t, compris‐
44       ing both the quotient and the remainder. The  structure  shall  include
45       the following members, in any order:
46
47           long long   quot;    /* Quotient */
48           long long   rem;     /* Remainder */
49

ERRORS

51       No errors are defined.
52
53       The following sections are informative.
54

EXAMPLES

56       None.
57

APPLICATION USAGE

59       None.
60

RATIONALE

62       None.
63

FUTURE DIRECTIONS

65       None.
66

SEE ALSO

68       div()
69
70       The Base Definitions volume of POSIX.1‐2008, <stdlib.h>
71
73       Portions  of  this text are reprinted and reproduced in electronic form
74       from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
75       --  Portable  Operating  System  Interface (POSIX), The Open Group Base
76       Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
77       cal  and  Electronics  Engineers,  Inc  and  The  Open Group.  (This is
78       POSIX.1-2008 with the 2013 Technical Corrigendum  1  applied.)  In  the
79       event of any discrepancy between this version and the original IEEE and
80       The Open Group Standard, the original IEEE and The Open Group  Standard
81       is  the  referee document. The original Standard can be obtained online
82       at http://www.unix.org/online.html .
83
84       Any typographical or formatting errors that appear  in  this  page  are
85       most likely to have been introduced during the conversion of the source
86       files to man page format. To report such errors,  see  https://www.ker
87       nel.org/doc/man-pages/reporting_bugs.html .
88
89
90
91IEEE/The Open Group                  2013                             LDIV(3P)
Impressum