wsieee754.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:3k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  *
  3.  * wsieee754.h
  4.  *
  5.  * Author: Markku Rossi <mtr@iki.fi>
  6.  *
  7.  * Copyright (c) 2000 WAPIT OY LTD.
  8.  *  All rights reserved.
  9.  *
  10.  * Functions to manipulate ANSI/IEEE Std 754-1985 binary floating-point
  11.  * numbers.
  12.  *
  13.  */
  14. #ifndef WSIEEE754_H
  15. #define WSIEEE754_H
  16. /********************* Types and definitions ****************************/
  17. /* Return codes for encoding and decoding functions. */
  18. typedef enum
  19. {
  20.     /* The operation was successful. */
  21.     WS_IEEE754_OK,
  22.     /* The value is `Not a Number' NaN. */
  23.     WS_IEEE754_NAN,
  24.     /* The valueis positive infinity. */
  25.     WS_IEEE754_POSITIVE_INF,
  26.     /* The value is negative infinity. */
  27.     WS_IEEE754_NEGATIVE_INF
  28. } WsIeee754Result;
  29. /********************* Special values ***********************************/
  30. /* `Not a Number' NaN */
  31. extern unsigned char ws_ieee754_nan[4];
  32. /* Positive infinity. */
  33. extern unsigned char ws_ieee754_positive_inf[4];
  34. /* Positive infinity. */
  35. extern unsigned char ws_ieee754_negative_inf[4];
  36. /********************* Global functions *********************************/
  37. /* Encode the floating point number `value' to the IEEE-754 single
  38.    precision format.  The function stores the encoded value to the
  39.    buffer `buf'.  The buffer `buf' must have 32 bits (4 bytes) of
  40.    space.  The function returns WsIeee754Result return value.  It
  41.    describes the format of the encoded value in `buf'.  In all cases,
  42.    the function generates the corresponding encoded value to the
  43.    buffer `buf'. */
  44. WsIeee754Result ws_ieee754_encode_single(double value, unsigned char *buf);
  45. /* Decode the IEEE-754 encoded number `buf' into a floating point
  46.    number.  The argument `buf' must have 32 bits of data.  The
  47.    function returns a result code which describes the success of the
  48.    decode operation.  If the result is WS_IEEE754_OK, the resulting
  49.    floating point number is returned in `value_return'. */
  50. WsIeee754Result ws_ieee754_decode_single(unsigned char *buf,
  51.         double *value_return);
  52. /* Get the sign bit from the IEEE-754 single format encoded number
  53.    `buf'.  The buffer `buf' must have 32 bits of data. */
  54. WsUInt32 ws_ieee754_single_get_sign(unsigned char *buf);
  55. /* Get the exponent from the IEEE-754 single format encoded number
  56.    `buf'.  The buffer `buf' must have 32 bits of data.  The returned
  57.    value is the biased exponent. */
  58. WsUInt32 ws_ieee754_single_get_exp(unsigned char *buf);
  59. /* Get the mantissa from the IEEE-754 single format encoded number
  60.    `buf'.  The buffer `buf' must have 32 bits of data. */
  61. WsUInt32 ws_ieee754_single_get_mant(unsigned char *buf);
  62. #endif /* not WSIEEE754_H */