27char* string_get(
const string_t* self,
size_t index)
bool array_is_empty(const array_t *self)
True if the array contains no element.
void * array_end(const array_t *self)
One-past-the-end pointer of the array.
void * array_get(const array_t *self, size_t index)
Pointer of the element at position index of the array.
size_t array_count(const array_t *self)
Number of elements stored.
Dynamic string implementation.
array_t string_t
A string is an array of char.