home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d172 / spiff.lha / Spiff / float.h < prev    next >
C/C++ Source or Header  |  1988-11-22  |  838b  |  36 lines

  1. /*                        Copyright (c) 1988 Bellcore
  2. **                            All Rights Reserved
  3. **       Permission is granted to copy or use this program, EXCEPT that it
  4. **       may not be sold for profit, the copyright notice must be reproduced
  5. **       on copies, and credit should be given to Bellcore where it is due.
  6. **       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7. */
  8.  
  9.  
  10. #include "floatrep.h"
  11.  
  12. #ifndef F_INCLUDED
  13.  
  14. /*
  15. **    flags for F_atof
  16. */
  17. #define NO_USE_ALL    0
  18. #define USE_ALL        1
  19.  
  20. typedef struct R_flstr *F_float;
  21. #define F_getexp(x)    R_getexp(x)
  22. #define F_getsign(x)    R_getsign(x)
  23. #define F_zerofloat(x)    R_zerofloat(x)
  24.  
  25. extern F_float F_atof();
  26.  
  27. extern F_float F_floatmul();
  28. extern F_float F_floatmagadd();
  29. extern F_float F_floatsub();
  30.  
  31. #define F_null    ((F_float) 0)
  32.  
  33. #define F_INCLUDED
  34.  
  35. #endif
  36.