Chris Apers wrote:
Where can i found how float and double are encoded ?
i'd like to add %f support to my vsprintf function.

this is the double. float is on the internet somewhere probably. did you check the MathLib source?


typedef struct {
        UInt32  sign : 1;
        Int32           exp  : 11;
        UInt32  manH : 20;
        UInt32  manL;
} FlpDoubleBits;

--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to