/usr/include/paw/ntuple/svec.h is in libpawlib2-dev 1:2.14.04.dfsg.2-7ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | /*
* svec.h --
* Implement a vector of strings ADT
*
* Original: 6-Dec-1995 23:09
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: svec.h,v 1.4 1996/04/23 18:39:13 maartenb Exp $
*
* $Log: svec.h,v $
* Revision 1.4 1996/04/23 18:39:13 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_SVEC
#define CERN_SVEC
#include <paw/ntuple/cern_types.h>
typedef struct _svec_struct_ {
int fSize;
int fEntries;
String * fV;
} SVecStruct;
typedef SVecStruct *SVec;
extern SVec
svec_new( int n );
extern SVec
svec_copy( SVec v );
extern void
svec_add( SVec v, String s );
extern String
svec_get( SVec v, const int i );
extern void
svec_del( SVec v );
extern int
svec_entries( SVec v );
#endif /* CERN_SVEC */
|