This file is indexed.

/usr/include/dieharder/Dtest.h is in libdieharder-dev 3.31.1-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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 *========================================================================
 * $Id: libdieharder.h 221 2006-08-16 22:43:03Z rgb $
 *
 * See copyright in copyright.h and the accompanying file COPYING
 *========================================================================
 */

 typedef struct {
   /* The name of the test */
   char *name;

   /* The SHORT name of the test (its call name) */
   char *sname;

   /* pointer to a test description */
   char *description;

   /* Standard test default */
   unsigned int psamples_std;

   /* Standard test default */
   unsigned int tsamples_std;

   /* Number of independent statistics generated per run */
   unsigned int nkps;

   /* A pointer to the test itself (must be filled at initialization) */
   int (*test)();

   /* void pointer to a vector of additional test arguments */
   void *targs;

 } Dtest;