Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1. #ifndef _IBMLFLOAT_H
  2. #define _IBMLFLOAT_H
  3. /* ibmfloat.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /* IBM Floating Point Format                                                 */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. /*****************************************************************************
  14.  * Includes
  15.  *****************************************************************************/
  16.  
  17. #include "stdinc.h"
  18. #include <math.h>
  19.  
  20. Boolean Double2IBMFloat(Word *pDest, double Src, Boolean ToDouble);
  21.  
  22. #endif /* _IBMLFLOAT_H */
  23.