File indexing completed on 2025-02-21 10:05:33
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef CERN_SVEC
0019 #define CERN_SVEC
0020
0021 #include "cern_types.h"
0022
0023
0024 typedef struct _svec_struct_ {
0025 int fSize;
0026 int fEntries;
0027 String * fV;
0028 } SVecStruct;
0029
0030 typedef SVecStruct *SVec;
0031
0032
0033 extern SVec
0034 svec_new( int n );
0035
0036 extern SVec
0037 svec_copy( SVec v );
0038
0039 extern void
0040 svec_add( SVec v, String s );
0041
0042 extern String
0043 svec_get( SVec v, const int i );
0044
0045 extern void
0046 svec_del( SVec v );
0047
0048 extern int
0049 svec_entries( SVec v );
0050
0051 #endif