aboutsummaryrefslogtreecommitdiffstats
path: root/man/zpowu.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/zpowu.3')
-rw-r--r--man/zpowu.339
1 files changed, 39 insertions, 0 deletions
diff --git a/man/zpowu.3 b/man/zpowu.3
new file mode 100644
index 0000000..851a1d8
--- /dev/null
+++ b/man/zpowu.3
@@ -0,0 +1,39 @@
+.TH ZPOWU 3 libzahl
+.SH NAME
+zpowu - Calculate a power of a big integer
+.SH SYNOPSIS
+.nf
+#include <zahl.h>
+
+void zpowu(z_t \fIpower\fP, z_t \fIbase\fP, unsigned long long int \fIexponent\fP);
+.fi
+.SH DESCRIPTION
+.B zpowu
+calculates the
+.IR exponent :th
+power of a
+.IR base ,
+and stores the result in
+.IR power .
+That is,
+.I power
+gets
+.I base
+↑
+.IR exponent .
+.P
+It is safe to call
+.B zpowu
+with non-unique parameters.
+.SH SEE ALSO
+.BR zpowu (3),
+.BR zmodpowu (3),
+.BR zsqr (3),
+.BR zstr (3),
+.BR zadd (3),
+.BR zsub (3),
+.BR zmul (3),
+.BR zdiv (3),
+.BR zmod (3),
+.BR zneg (3),
+.BR zabs (3)