home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / math / modf.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  437 b   |  23 lines

  1. @c ----------------------------------------------------------------------
  2. @node modf, math
  3. @subheading Syntax
  4.  
  5. @example
  6. #include <math.h>
  7.  
  8. double modf(double x, double *pint);
  9. @end example
  10.  
  11. @subheading Description
  12.  
  13. @code{modf} breaks down @var{x} into its integer portion (which it
  14. stores in @var{*pint}) and the remaining fractional portion, which it
  15. returns.
  16.  
  17. @subheading Return Value
  18.  
  19. The fractional portion.
  20.  
  21.  
  22.  
  23.