blob: 060224ddb5540f51e3c6fe7b0b2b618968b7c3fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.TH ZINIT 3 libzahl
.SH NAME
zinit - Prepare a bit integer for use.
.SH SYNOPSIS
.nf
#include <zahl.h>
void zinit(z_t \fIa\fP);
.fi
.SH DESCRIPTION
.B zinit
initializes the big integer
.I a
so that it can be used in other function calls.
.P
.B z_t
is defined as
.P
.nf
typedef struct {
/* You should not care about what is
* inside this struct. It could change
* in the future. */
} z_t[1];
.fi
.SH SEE ALSO
.BR zfree (3),
.BR zswap (3),
.BR zsave (3),
.BR zsignum (3),
.BR zeven (3),
.BR zset (3),
.BR zcmp (3)
|