Manpage of LDIV

Google
Web www.fiveanddime.net

LDIV

Section: NEWLIB (3)
Updated: 2005 Feb 23
Index Return to Main Contents
 

NAME

1.19 `ldiv'--divide two long integers

 

SYNOPSIS


     #include <stdlib.h>
     ldiv_t ldiv(long N, long D);  

DESCRIPTION

Divide N/D, returning quotient and remainder as two long integers in a structure `ldiv_t'.

 

RETURNS

The result is represented with the structure


      typedef struct
      {
       long quot;
       long rem;
      } ldiv_t;


   where the `quot' field represents the quotient, and `rem' the remainder. For nonzero D, if ``R = ldiv(N,D);'' then N equals ``R.rem + D*R.quot''.


   To divide `int' rather than `long' values, use the similar function `div'.

 

PORTABILITY

`ldiv' is ANSI.


   No supporting OS subroutines are required.

 

SEE ALSO

ldiv is part of the libc library. The full documentation for libc is maintained as a Texinfo manual. If info and libc are properly installed at your site, the command
info libc

will give you access to the complete manual.


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURNS
PORTABILITY
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 21:25:23 GMT, May 16, 2005



www.fiveanddime.net








Google
Web www.fiveanddime.net