CVector  4.1.0
A C++ style vector library in strict ANSI C (C89)
Data Fields
cvector_str Struct Reference

Data structure for string vector. More...

#include "cvector.h"

Data Fields

char ** a
 Array. More...
 
cvec_sz size
 Current size (amount you use when manipulating array directly). More...
 
cvec_sz capacity
 Allocated size of array; always >= size. More...
 

Detailed Description

Data structure for string vector.

Definition at line 185 of file cvector.h.

Field Documentation

◆ a

char ** cvector_str::a

Array.

Definition at line 187 of file cvector.h.

◆ capacity

cvec_sz cvector_str::capacity

Allocated size of array; always >= size.

Definition at line 189 of file cvector.h.

◆ size

cvec_sz cvector_str::size

Current size (amount you use when manipulating array directly).

Definition at line 188 of file cvector.h.


The documentation for this struct was generated from the following files: