This file is indexed.

/usr/include/dieharder/Xtest.h is in libdieharder-dev 3.31.1-7.

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
/*
 *========================================================================
 * $Id: Btest.c 212 2006-07-21 18:07:33Z rgb $
 *
 * See copyright in copyright.h and the accompanying file COPYING
 *========================================================================
 */

 /*
  * This is the struct used in Xtest.c, a erfc based test that generates
  * a p-value for a single normally distributed statistic.
  */
 typedef struct {
   unsigned int npts;
   double p;
   double x;
   double y;
   double sigma;
   double pvalue;
 } Xtest;

 void Xtest_eval(Xtest *xtest);