Removed silc_mp_sinit for now.
authorPekka Riikonen <priikone@silcnet.org>
Wed, 2 May 2007 14:19:35 +0000 (14:19 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Wed, 2 May 2007 14:19:35 +0000 (14:19 +0000)
lib/silcmath/silcmp.h

index aaff041274be97127ee878f6258d72e27daa54da..4226f3d0cf5a0d8edb8ec0c54fd9a7f5199116fe 100644 (file)
@@ -4,7 +4,7 @@
 
   Author: Pekka Riikonen <priikone@silcnet.org>
 
-  Copyright (C) 1997 - 2005 Pekka Riikonen
+  Copyright (C) 1997 - 2007 Pekka Riikonen
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -75,30 +75,6 @@ typedef SILC_MP_INT SilcMPInt;
  ***/
 void silc_mp_init(SilcMPInt *mp);
 
-/****f* silcmath/SilcMPAPI/silc_mp_sinit
- *
- * SYNOPSIS
- *
- *    SilcBool silc_mp_sinit(SilcStack stack, SilcMPInt *mp);
- *
- * DESCRIPTION
- *
- *    Initializes the SilcMPInt *that is the actual MP Integer.
- *    This must be called before any of the silc_mp_ routines can be
- *    used. The integer is uninitialized with the silc_mp_uninit function.
- *    This routine is equivalent to silc_mp_init but allocates the memory
- *    from `stack'.
- *
- * NOTES
- *
- *    The `stack' is saved into the `mp' for the duration of the existence
- *    of `mp'.  This means that `stack' must not become invalid while `mp'
- *    is used.  It also means that any routine that may need memory allocation
- *    to for example enlarge `mp' will allocate the memory from `stack'.
- *
- ***/
-SilcBool silc_mp_sinit(SilcStack stack, SilcMPInt *mp);
-
 /****f* silcmath/SilcMPAPI/silc_mp_uninit
  *
  * SYNOPSIS