diff options
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/vec/vecInt.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/misc/vec/vecInt.h b/src/misc/vec/vecInt.h index 59c91e53..0d0c24a8 100644 --- a/src/misc/vec/vecInt.h +++ b/src/misc/vec/vecInt.h @@ -327,6 +327,22 @@ static inline int * Vec_IntArray( Vec_Int_t * p ) SeeAlso [] ***********************************************************************/ +static inline int * Vec_IntLimit( Vec_Int_t * p ) +{ + return p->pArray + p->nSize; +} + +/**Function************************************************************* + + Synopsis [] + + Description [] + + SideEffects [] + + SeeAlso [] + +***********************************************************************/ static inline int Vec_IntSize( Vec_Int_t * p ) { return p->nSize; |