Subversion Repositories pentevo

Rev

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

  1. #ifndef _IEEEFLOAT_H
  2. #define _IEEEFLOAT_H
  3. /* ieeefloat.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS                                                                        */
  8. /*                                                                           */
  9. /* IEEE Floating Point Handling                                              */
  10. /*                                                                           */
  11. /*                                                                           */
  12. /*****************************************************************************/
  13.  
  14. #include "datatypes.h"
  15.  
  16. extern int as_float_2_ieee2(as_float_t inp, Byte *pDest, Boolean NeedsBig);
  17.  
  18. extern int as_float_2_ieee4(as_float_t inp, Byte *pDest, Boolean NeedsBig);
  19.  
  20. extern int as_float_2_ieee8(as_float_t inp, Byte *pDest, Boolean NeedsBig);
  21.  
  22. extern int as_float_2_ieee10(as_float_t inp, Byte *pDest, Boolean NeedsBig);
  23.  
  24. extern int as_float_2_ieee16(as_float_t inp, Byte *pDest, Boolean NeedsBig);
  25.  
  26. #endif /* _IEEEFLOAT_H */
  27.