43#define CSTL_ARRAY_INITIALIZER(NAME) \
45 .ptr = CSTL_SHARED_PTR_INITIALIZER(NAME.ptr), \
43#define CSTL_ARRAY_INITIALIZER(NAME) \ …
54#define DECLARE_CSTL_ARRAY(NAME) \
56 CSTL_ARRAY_INITIALIZER(NAME)
54#define DECLARE_CSTL_ARRAY(NAME) \ …
224 void * arr,
size_t count,
size_t size,
243 const void * arr,
size_t count,
size_t size,
260 const void * arr,
size_t count,
size_t size,
276 void * arr,
size_t count,
size_t size,
cstl_sort_algorithm_t
Enumeration indicating the desired sort algorithm.
void cstl_swap_func_t(void *a, void *b, void *t, size_t len)
Type of function called to swap two objects.
int cstl_compare_func_t(const void *obj1, const void *obj2, void *priv)
Function type for comparing (in)equality of two objects.
void cstl_array_alloc(cstl_array_t *a, size_t nm, size_t sz)
Allocate an array to be managed.
ssize_t cstl_raw_array_find(const void *arr, size_t count, size_t size, const void *ex, cstl_compare_func_t *cmp, void *priv)
Perform a linear search of the array.
void cstl_raw_array_sort(void *arr, size_t count, size_t size, cstl_compare_func_t *cmp, void *priv, cstl_swap_func_t *swap, void *tmp, cstl_sort_algorithm_t algo)
Sort the array using the specified algorithm.
ssize_t cstl_raw_array_search(const void *arr, size_t count, size_t size, const void *ex, cstl_compare_func_t *cmp, void *priv)
Perform a binary search of the array.
void cstl_array_set(cstl_array_t *const a, void *buf, size_t nm, size_t sz)
Manage an externally allocated array.
static size_t cstl_array_size(const cstl_array_t *const a)
Get the number of elements in the array.
void cstl_array_release(cstl_array_t *const a, void **buf)
Release an externally allocated array.
static void * cstl_array_data(cstl_array_t *const a)
Return a pointer to the underlying array.
const void * cstl_array_at_const(const cstl_array_t *a, size_t i)
Return a pointer to an element in the array.
const void * cstl_array_data_const(const cstl_array_t *a)
Return a pointer to the underlying array.
static void cstl_array_reset(cstl_array_t *const a)
Drop a reference to memory managed by this object.
void cstl_array_slice(cstl_array_t *a, size_t beg, size_t end, cstl_array_t *s)
Create an array object referring to a slice of another.
void cstl_array_unslice(cstl_array_t *s, cstl_array_t *a)
Create an array object referring to the entire underlying array.
static void * cstl_array_at(cstl_array_t *const a, const size_t i)
Return a pointer to an element in the array.
void cstl_raw_array_reverse(void *arr, size_t count, size_t size, cstl_swap_func_t *swap, void *tmp)
Reverse the contents of an array.
static void cstl_array_init(cstl_array_t *const a)
Initialize a previously declared/allocated array object.
void cstl_shared_ptr_reset(cstl_shared_ptr_t *sp)
Stop managing the underlying memory via this object.
static void cstl_shared_ptr_init(cstl_shared_ptr_t *const sp)
Initialize a shared pointer object.
The shared pointer object.