This file is indexed.

/usr/include/nrn/hocgetsym.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
#ifndef hocgetsym_h
#define hocgetsym_h

#include "hoc.h"

typedef struct Psym {
	Symbol *sym;
	Arrayinfo* arayinfo;
	int nsub;
	int sub[1];
} Psym;

Psym *hoc_getsym(const char*);
double hoc_getsymval(Psym*);
void hoc_assignsym(Psym* p, double val);
void hoc_execstr(const char* cp);

#endif