home *** CD-ROM | disk | FTP | other *** search
/ Software Collection (I) / TOOLS.iso / c05 / 1.img / MATH.H < prev    next >
Encoding:
Text File  |  1986-09-10  |  729 b   |  42 lines

  1. /*            MATH.H
  2.  
  3.    Declaration of the available floating point functions.
  4.    Information about these functions can be found in the ANSI
  5.    C-Draft and in UNIX litterature.
  6.  
  7. */
  8.  
  9. double atan (double arg);
  10.  
  11. double atan2 (double arg1, double arg2);
  12.  
  13. double asin (double arg);
  14.  
  15. double acos (double arg);
  16.  
  17. double tan (double arg);
  18.  
  19. double cos (double arg);
  20.  
  21. double sin (double arg);
  22.  
  23. double sqrt (double arg);
  24.  
  25. double exp (double arg);
  26.  
  27. double pow (double arg1, double arg2);
  28.  
  29. double exp10 (double arg);
  30.  
  31. double log (double arg);
  32.  
  33. double log10 (double arg);
  34.  
  35. double modf (double value, double *iptr);
  36.  
  37. double floor (double arg);
  38.  
  39. double ceil (double arg);
  40.  
  41. double frexp (double arg1, int *arg2);
  42.