summaryrefslogtreecommitdiff
path: root/mpz
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-02 01:04:34 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-02 01:04:34 +0200
commitb209fcc0fa574000e16caeb7c9438d6ada9d04f9 (patch)
treeda423cc9d6c2c0f996094b3231f2844ef7ee9ec3 /mpz
parentf77f3d29a55fd53a5e79bcc2639d97a42e011c98 (diff)
downloadgmp-b209fcc0fa574000e16caeb7c9438d6ada9d04f9.tar.gz
Use .h instead:
* mpz/fits_s.h: Renamed and adapted from mpz/fits_s.c.
Diffstat (limited to 'mpz')
-rw-r--r--mpz/fits_s.i35
1 files changed, 0 insertions, 35 deletions
diff --git a/mpz/fits_s.i b/mpz/fits_s.i
deleted file mode 100644
index 4b9151c28..000000000
--- a/mpz/fits_s.i
+++ /dev/null
@@ -1,35 +0,0 @@
-/* int mpz_fits_X_p (mpz_t z) -- test whether z fits signed type X.
-
-Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
-
-This file is part of the GNU MP Library.
-
-The GNU MP Library is free software; you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation; either version 2.1 of the License, or (at your
-option) any later version.
-
-The GNU MP Library is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
-License for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with the GNU MP Library; see the file COPYING.LIB. If not, write to
-the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-MA 02111-1307, USA. */
-
-#include "gmp.h"
-#include "gmp-impl.h"
-
-
-int
-FUNCTION (mpz_srcptr z)
-{
- mp_size_t size = SIZ(z);
- mp_limb_t data = PTR(z)[0];
-
- return (size == 0
- || (size == 1 && data <= MAXIMUM)
- || (size == -1 && data <= - (mp_limb_t) MINIMUM));
-}