(1 . 5)(1 . 6)
23 /* mpiutil.ac - Utility functions for MPI
24 * Modified by No Such Labs. (C) 2015. See README.
25 * Modified by S.MG, 2018. Added mpi_get_alloced(MPI a)
26 *
27 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
28 * SHA256(gnupg-1.4.10.tar.gz):
(477 . 6)(478 . 14)
30 return a->nlimbs;
31 }
32
33 /*
34 * Returns the allocated space for the given MPI, as number of limbs.
35 */
36 int
37 mpi_get_alloced (MPI a)
38 {
39 return a->alloced;
40 }
41
42 int
43 mpi_is_neg (MPI a)