1array_bytes(3) Library Functions Manual array_bytes(3)
23
4
NAME
6array_bytes - get number of allocated members in array
7
SYNTAX
9#include <array.h>
1011
int64 array_bytes(array* x);
1213
array x;
14int64 bytes = array_bytes(&x);
1516
DESCRIPTION
18array_bytes returns the number of initialized bytes in x, without
19regard to t.
2021
If x is unallocated, array_length and array_bytes return 0.
2223
SEE ALSO
25array_allocate(3), array_get(3), array_fail(3), array_length(3)
2627
28
29
array_bytes(3)