This file is indexed.

/usr/share/doc/g-wrap/examples/miscutils.h is in g-wrap 1.9.15-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 GW_MISCUTILS_H
#define GW_MISCUTILS_H

typedef struct {
    long long seconds;
    long int nanoseconds;
} Timespec64;

Timespec64 elapsed_time (Timespec64 start, Timespec64 finish);
char *     join_strings (const char *s1, const char *s2);
double     seconds_since_dow (unsigned int dow);

#endif