diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2015-10-28 21:15:21 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2015-10-28 21:15:21 (GMT) |
commit | d2b7a7797a402493c3e257f8c83b27111c0770c0 (patch) | |
tree | 17060872d18b632eaaef229b4626c5e3d1e6afcc /generic/tclInt.h | |
parent | acc449dd107dae0b0382540ae810a3daa6e104c2 (diff) | |
download | tcl-d2b7a7797a402493c3e257f8c83b27111c0770c0.zip tcl-d2b7a7797a402493c3e257f8c83b27111c0770c0.tar.gz tcl-d2b7a7797a402493c3e257f8c83b27111c0770c0.tar.bz2 |
Expose some of the TclBN operations through the internal API, so clients of the bignum code don't need to use tclTomMath.h directly.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 356d250..f9d2edf 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -4435,17 +4435,12 @@ MODULE_SCOPE void TclDbInitNewObj(Tcl_Obj *objPtr, const char *file, /* *---------------------------------------------------------------------- * - * Core procedures added to libtommath for bignum manipulation. + * Core procedure added to libtommath for bignum manipulation. * *---------------------------------------------------------------------- */ MODULE_SCOPE Tcl_PackageInitProc TclTommath_Init; -MODULE_SCOPE void TclBNInitBignumFromLong(mp_int *bignum, long initVal); -MODULE_SCOPE void TclBNInitBignumFromWideInt(mp_int *bignum, - Tcl_WideInt initVal); -MODULE_SCOPE void TclBNInitBignumFromWideUInt(mp_int *bignum, - Tcl_WideUInt initVal); /* *---------------------------------------------------------------------- |