This file is indexed.

/usr/include/nrn/cabvars.h is in neuron-dev 7.5-1.

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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* /local/src/master/nrn/src/nrnoc/cabvars.h,v 1.5 1999/02/05 18:09:50 hines Exp */
#define XMECH 0

static struct {		/* USERPROPERTY */
	char	*name;
	short	type;
	short	index;
} usrprop[] = {
	"nseg", 0, 0,
	"L", 1, 2,
	"rallbranch", 1, 4,
	"Ra", 1, 7,
	0, 0, 0
};

extern  void capac_reg_(), passive0_reg_(), _passive_reg_(),
#if EXTRACELLULAR
	extracell_reg_(),
#endif
	_stim_reg_(),
	_syn_reg_(),
	_expsyn_reg_(),
	_exp2syn_reg_(),
	_svclmp_reg_(),
	_vclmp_reg_(),
	_oclmp_reg_(),
	_apcount_reg_(),
	_netstim_reg_(),
	_intfire1_reg_(),
	_intfire2_reg_(),
	_intfire4_reg_(),
	_ppmark_reg_(),
	_pattern_reg_(),
#if XMECH
	_xmech_reg_(),
#endif
	_feature_reg_(),
	_hh_reg_();

static Pfrv mechanism[] = { /* type will start at 3 */
	capac_reg_,
	_passive_reg_,
#if EXTRACELLULAR
	/* extracellular requires special handling and must be type 5 */
	extracell_reg_,
#endif
	passive0_reg_,	/* twice as fast as model description? */
	_stim_reg_,
	_syn_reg_,
	_expsyn_reg_,
	_exp2syn_reg_,
	_svclmp_reg_,
	_vclmp_reg_,
	_oclmp_reg_,
	_apcount_reg_,
	_hh_reg_,
	_feature_reg_,
	_netstim_reg_,
	_intfire1_reg_,
	_intfire2_reg_,
	_intfire4_reg_,
	_ppmark_reg_,
	_pattern_reg_,
#if XMECH
	_xmech_reg_,
#endif
	0
};

static const char *morph_mech[] = { /* this is type 2 */
	"0", "morphology", "diam", 0,0,0,
};

extern void cab_alloc(Prop*);
extern void morph_alloc(Prop*);

extern Memb_func* memb_func;
#if 0
 first two memb_func
	NULL_CUR, NULL_ALLOC, NULL_STATE, NULL_INITIALIZE, (Pfri)0, 0,	/*Unused*/
	NULL_CUR, cab_alloc, NULL_STATE, NULL_INITIALIZE, (Pfri)0, 0,	/*CABLESECTION*/
#endif