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