CVector
4.1.0
A C++ style vector library in strict ANSI C (C89)
|
Data structure for short vector. More...
#include "cvector_short.h"
Data Fields | |
short * | 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... | |
Data structure for short vector.
Definition at line 54 of file cvector_short.h.
short* cvector_short::a |
Array.
Definition at line 56 of file cvector_short.h.
cvec_sz cvector_short::capacity |
Allocated size of array; always >= size.
Definition at line 58 of file cvector_short.h.
cvec_sz cvector_short::size |
Current size (amount you use when manipulating array directly).
Definition at line 57 of file cvector_short.h.