diff options
Diffstat (limited to 'src/misc/vec/vecBit.h')
-rw-r--r-- | src/misc/vec/vecBit.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/misc/vec/vecBit.h b/src/misc/vec/vecBit.h index 7f0d7409..4024d0ee 100644 --- a/src/misc/vec/vecBit.h +++ b/src/misc/vec/vecBit.h @@ -252,6 +252,22 @@ static inline int Vec_BitSize( Vec_Bit_t * p ) SeeAlso [] ***********************************************************************/ +static inline int Vec_BitCap( Vec_Bit_t * p ) +{ + return p->nCap; +} + +/**Function************************************************************* + + Synopsis [] + + Description [] + + SideEffects [] + + SeeAlso [] + +***********************************************************************/ static inline int Vec_BitEntry( Vec_Bit_t * p, int i ) { assert( i >= 0 && i < p->nSize ); |