diff options
| author | dgp@users.sourceforge.net <dgp> | 2006-04-26 13:42:42 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2006-04-26 13:42:42 (GMT) |
| commit | 4acb50674f6a90085467edf9587f75961fdea2e8 (patch) | |
| tree | 9fd9076750d0a7701585d7ed1052c1f3ca66eb88 /generic/tclStrToD.c | |
| parent | 99da7adc6325d0711ed66ee6b4a157c7a2f92f1e (diff) | |
| download | tcl-4acb50674f6a90085467edf9587f75961fdea2e8.zip tcl-4acb50674f6a90085467edf9587f75961fdea2e8.tar.gz tcl-4acb50674f6a90085467edf9587f75961fdea2e8.tar.bz2 | |
* generic/tclBinary.c: Revised the handling of the Q and q format
* generic/tclInt.h: specifiers for [binary] to account for the
* generic/tclStrToD.c: "middle endian" floating point format used
in Nokia N770.
Diffstat (limited to 'generic/tclStrToD.c')
| -rwxr-xr-x | generic/tclStrToD.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 41d13f8..369dab9 100755 --- a/generic/tclStrToD.c +++ b/generic/tclStrToD.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStrToD.c,v 1.21 2006/04/19 16:43:02 kennykb Exp $ + * RCS: @(#) $Id: tclStrToD.c,v 1.22 2006/04/26 13:42:43 dgp Exp $ * *---------------------------------------------------------------------- */ @@ -2703,6 +2703,22 @@ Nokia770Twiddle( } /* + *---------------------------------------------------------------------- + * + * TclNokia770Doubles -- + * + * Transpose the two words of a number for Nokia 770 floating + * point handling. + * + *---------------------------------------------------------------------- + */ + +int +TclNokia770Doubles() +{ + return n770_fp; +} +/* * Local Variables: * mode: c * c-basic-offset: 4 |
