This file is indexed.

/usr/lib/grass64/include/grass/readsites.h is in grass-dev 6.4.3-3.

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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <math.h>
#include <grass/gis.h>
#include <grass/site.h>

/*---------------------typedefs*/

struct zstruct
{
    double x, y, z;
};
typedef struct zstruct Z;

/*--------------------functions */
int G_readsites(FILE *, int, int, int, struct Cell_head *, Z **);