This file is indexed.

/usr/lib/grass72/include/grass/defs/rowio.h is in grass-dev 7.2.0-2.

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
#ifndef GRASS_ROWIODEFS_H
#define GRASS_ROWIODEFS_H

int Rowio_fileno(const ROWIO *);
void Rowio_forget(ROWIO *, int);
void *Rowio_get(ROWIO *, int);
void Rowio_flush(ROWIO *);
int Rowio_put(ROWIO *, const void *, int);
void Rowio_release(ROWIO *);
int Rowio_setup(ROWIO *, int, int, int, int (*)(int, void *, int, int),
		int (*)(int, const void *, int, int));

#endif