You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
511 B
Groff
20 lines
511 B
Groff
.TH iarray_init 3
|
|
.SH NAME
|
|
iarray_init \- initialize iarray data structure
|
|
.SH SYNTAX
|
|
.B #include <iarray.h>
|
|
|
|
void \fBiarray_init\fP(array* \fIx\fR, size_t \fIelemsize\fR);
|
|
|
|
iarray \fIx\fR;
|
|
int64 \fIpos\fR;
|
|
\fIt\fR* p = iarray_init(&\fIx\fR,sizeof(\fIelement\fR));
|
|
|
|
.SH DESCRIPTION
|
|
iarray_init initializes an iarray so that it can hold elements of size
|
|
\fIelemsize\fR. iarray_init does not actually allocate anything, so it
|
|
can not fail.
|
|
|
|
.SH "SEE ALSO"
|
|
iarray_allocate(3), iarray_get(3), iarray_free(3)
|