This file is indexed.

/usr/lib/grass74/include/grass/defs/stats.h is in grass-dev 7.4.0-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
#ifndef GRASS_STATSDEFS_H
#define GRASS_STATSDEFS_H

typedef void stat_func(DCELL *, DCELL *, int, const void *);
typedef void stat_func_w(DCELL *, DCELL(*)[2], int, const void *);

extern stat_func c_ave;
extern stat_func c_count;
extern stat_func c_divr;
extern stat_func c_intr;
extern stat_func c_max;
extern stat_func c_maxx;
extern stat_func c_median;
extern stat_func c_min;
extern stat_func c_minx;
extern stat_func c_mode;
extern stat_func c_stddev;
extern stat_func c_sum;
extern stat_func c_thresh;
extern stat_func c_var;
extern stat_func c_range;
extern stat_func c_reg_m;
extern stat_func c_reg_c;
extern stat_func c_reg_r2;
extern stat_func c_reg_t;
extern stat_func c_quart1;
extern stat_func c_quart3;
extern stat_func c_perc90;
extern stat_func c_quant;
extern stat_func c_skew;
extern stat_func c_kurt;

extern stat_func_w w_ave;
extern stat_func_w w_count;
extern stat_func_w w_median;
extern stat_func_w w_min;
extern stat_func_w w_max;
extern stat_func_w w_mode;
extern stat_func_w w_quart1;
extern stat_func_w w_quart3;
extern stat_func_w w_perc90;
extern stat_func_w w_quant;
extern stat_func_w w_reg_m;
extern stat_func_w w_reg_c;
extern stat_func_w w_reg_r2;
extern stat_func_w w_reg_t;
extern stat_func_w w_stddev;
extern stat_func_w w_sum;
extern stat_func_w w_var;
extern stat_func_w w_skew;
extern stat_func_w w_kurt;

extern int sort_cell(DCELL *, int);
extern int sort_cell_w(DCELL(*)[2], int);

#endif