Updated one comment
This commit is contained in:
parent
62286803a6
commit
53cdc76873
@ -11,11 +11,7 @@ extern "C"
|
|||||||
{
|
{
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
typedef struct // Main structure of vector data.
|
||||||
* @brief Main structure of vector data.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
typedef struct
|
|
||||||
{
|
{
|
||||||
void **items; // Array of pointers of vector items.
|
void **items; // Array of pointers of vector items.
|
||||||
uint16_t capacity; // Maximum capacity of the vector. @note Used to control the size of allocated memory for array of pointers of vector items. Usually equal to the current number of items in the vector. Automatically changes when items are added or deleted.
|
uint16_t capacity; // Maximum capacity of the vector. @note Used to control the size of allocated memory for array of pointers of vector items. Usually equal to the current number of items in the vector. Automatically changes when items are added or deleted.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user