diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 20:14:08 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 20:14:08 (GMT) |
| commit | 8e16c8510eaf4b47487ed5fdc5989c9554160903 (patch) | |
| tree | 6ac1b304e947d621734475db91e19db47d68c048 /generic/tclStrToD.c | |
| parent | 1745d4b3ad16bbbb470d8dbdfdfe9b45a4aa90df (diff) | |
| download | tcl-8e16c8510eaf4b47487ed5fdc5989c9554160903.zip tcl-8e16c8510eaf4b47487ed5fdc5989c9554160903.tar.gz tcl-8e16c8510eaf4b47487ed5fdc5989c9554160903.tar.bz2 | |
Export Tcl_InitBignumFromDouble
Diffstat (limited to 'generic/tclStrToD.c')
| -rwxr-xr-x | generic/tclStrToD.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 9fe25d0..7122d33 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.18 2005/12/19 19:03:17 dgp Exp $ + * RCS: @(#) $Id: tclStrToD.c,v 1.19 2005/12/27 20:14:09 kennykb Exp $ * *---------------------------------------------------------------------- */ @@ -2214,7 +2214,7 @@ TclFinalizeDoubleConversion() /* *---------------------------------------------------------------------- * - * TclInitBignumFromDouble -- + * Tcl_InitBignumFromDouble -- * * Extracts the integer part of a double and converts it to an arbitrary * precision integer. @@ -2223,14 +2223,14 @@ TclFinalizeDoubleConversion() * None. * * Side effects: - * Initializes the bignum supplied, and stores the converted number * in - * it. + * Initializes the bignum supplied, and stores the converted number + * in it. * *---------------------------------------------------------------------- */ int -TclInitBignumFromDouble( +Tcl_InitBignumFromDouble( Tcl_Interp *interp, /* For error message */ double d, /* Number to convert */ mp_int *b) /* Place to store the result */ |
