beta-0.89.2
[luatex.git] / source / libs / gmp / gmp-src / mpz / cmp.c
blobb8a5eaa7657a4a873117f4a91654dda1a042bbba
1 /* mpz_cmp(u,v) -- Compare U, V. Return positive, zero, or negative
2 based on if U > V, U == V, or U < V.
4 Copyright 1991, 1993, 1994, 1996, 2001, 2002, 2011 Free Software Foundation,
5 Inc.
7 This file is part of the GNU MP Library.
9 The GNU MP Library is free software; you can redistribute it and/or modify
10 it under the terms of either:
12 * the GNU Lesser General Public License as published by the Free
13 Software Foundation; either version 3 of the License, or (at your
14 option) any later version.
18 * the GNU General Public License as published by the Free Software
19 Foundation; either version 2 of the License, or (at your option) any
20 later version.
22 or both in parallel, as here.
24 The GNU MP Library is distributed in the hope that it will be useful, but
25 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
26 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 for more details.
29 You should have received copies of the GNU General Public License and the
30 GNU Lesser General Public License along with the GNU MP Library. If not,
31 see https://www.gnu.org/licenses/. */
33 #include "gmp.h"
34 #include "gmp-impl.h"
36 int
37 mpz_cmp (mpz_srcptr u, mpz_srcptr v) __GMP_NOTHROW
39 mp_size_t usize, vsize, dsize, asize;
40 mp_srcptr up, vp;
41 int cmp;
43 usize = SIZ(u);
44 vsize = SIZ(v);
45 dsize = usize - vsize;
46 if (dsize != 0)
47 return dsize;
49 asize = ABS (usize);
50 up = PTR(u);
51 vp = PTR(v);
52 MPN_CMP (cmp, up, vp, asize);
53 return (usize >= 0 ? cmp : -cmp);