aboutsummaryrefslogtreecommitdiffstats
path: root/man/zbtest.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/zbtest.3')
-rw-r--r--man/zbtest.328
1 files changed, 28 insertions, 0 deletions
diff --git a/man/zbtest.3 b/man/zbtest.3
new file mode 100644
index 0000000..ee3562a
--- /dev/null
+++ b/man/zbtest.3
@@ -0,0 +1,28 @@
+.TH ZBTEST 3 libzahl
+.SH NAME
+zbtest - Test a bit in a big integer
+.SH SYNOPSIS
+.nf
+#include <zahl.h>
+
+int zbtest(z_t \fIa\fP, size_t \fIindex\fP);
+.fi
+.SH DESCRIPTION
+.B zbtest
+returns whether the bit with the specified
+.I index
+is set in
+.IR a .
+.SH RETURN VALUE
+.B zbtest
+returns 1 if the bit is set, or 0 otherwise.
+.SH SEE ALSO
+.BR zand (3),
+.BR zor (3),
+.BR zxor (3),
+.BR znot (3),
+.BR zlsh (3),
+.BR zrsh (3),
+.BR zsplit (3),
+.BR zlsb (3),
+.BR zbits (3)