home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / mathieeedoubbas_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  1010 b   |  39 lines

  1. #ifndef  CLIB_MATHIEEEDOUBBAS_PROTOS_H
  2. #define  CLIB_MATHIEEEDOUBBAS_PROTOS_H
  3.  
  4. /*
  5. **    $VER: mathieeedoubbas_protos.h 40.1 (17.5.1996)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20. LONG IEEEDPFix( DOUBLE parm );
  21. DOUBLE IEEEDPFlt( LONG integer );
  22. LONG IEEEDPCmp( DOUBLE leftParm, DOUBLE rightParm );
  23. LONG IEEEDPTst( DOUBLE parm );
  24. DOUBLE IEEEDPAbs( DOUBLE parm );
  25. DOUBLE IEEEDPNeg( DOUBLE parm );
  26. DOUBLE IEEEDPAdd( DOUBLE leftParm, DOUBLE rightParm );
  27. DOUBLE IEEEDPSub( DOUBLE leftParm, DOUBLE rightParm );
  28. DOUBLE IEEEDPMul( DOUBLE factor1, DOUBLE factor2 );
  29. DOUBLE IEEEDPDiv( DOUBLE dividend, DOUBLE divisor );
  30. /*--- functions in V33 or higher (Release 1.2) ---*/
  31. DOUBLE IEEEDPFloor( DOUBLE parm );
  32. DOUBLE IEEEDPCeil( DOUBLE parm );
  33.  
  34. #ifdef __cplusplus
  35. }
  36. #endif /* __cplusplus */
  37.  
  38. #endif   /* CLIB_MATHIEEEDOUBBAS_PROTOS_H */
  39.