|
Objectively 1.0.0
Ultra-lightweight object oriented framework for GNU C.
|
Mutable arrays. More...
#include <Objectively/Array.h>Go to the source code of this file.
Data Structures | |
| struct | MutableArray |
| Mutable arrays. More... | |
Functions | |
| OBJECTIVELY_EXPORT Class * | _MutableArray (void) |
| OBJECTIVELY_EXPORT void | quicksort (ident base, size_t count, size_t size, Comparator comparator, ident data) |
| A portability wrapper around reentrant qsort. More... | |
Mutable arrays.
Definition in file MutableArray.h.
| OBJECTIVELY_EXPORT Class * _MutableArray | ( | void | ) |
Definition at line 349 of file MutableArray.c.
| OBJECTIVELY_EXPORT void quicksort | ( | ident | base, |
| size_t | count, | ||
| size_t | size, | ||
| Comparator | comparator, | ||
| ident | data | ||
| ) |
A portability wrapper around reentrant qsort.
| base | The base of the array to sort. |
| count | The count of elements in the array |
| size | The size of each element in the array. |
| comparator | The Comparator to sort with. |
| data | User data. |
Definition at line 67 of file MutableArray.c.