aboutsummaryrefslogtreecommitdiffstats
path: root/man/zcmpmag.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/zcmpmag.3')
-rw-r--r--man/zcmpmag.333
1 files changed, 33 insertions, 0 deletions
diff --git a/man/zcmpmag.3 b/man/zcmpmag.3
new file mode 100644
index 0000000..4581766
--- /dev/null
+++ b/man/zcmpmag.3
@@ -0,0 +1,33 @@
+.TH ZCMPMAG 3 libzahl
+.SH NAME
+zcmpmag - Compare the absolute values of two big integer
+.SH SYNOPSIS
+.nf
+#include <zahl.h>
+
+int zcmpmag(z_t \fIa\fP, z_t \fIb\fP);
+.fi
+.SH DESCRIPTION
+.B zcmpmag
+compares the absolute value of
+.I a
+and the absolute value of
+.IR b .
+.SH RETURN VALUE
+.B zcmpmag
+returns -1 if
+.RI | a |
+is less than
+.RI | b |,
+0 if
+.RI | a |
+is equal to
+.RI | b |,
+and +1 qif
+.RI | a |
+is greater than
+.RI | b |.
+.SH SEE ALSO
+.BR zcmp (3),
+.BR zcmpi (3),
+.BR zcmpu (3)