home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / OTL-MC6.DMS / in.adf / incl.lha / INCLUDE / clib / mathieeedoubbas_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-29  |  1.0 KB  |  43 lines

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