This file is indexed.

/usr/include/xylib/pdcif.h is in libxy-dev 1.3-1.1+b1.

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
// Powder Diffraction CIF (pdCIF)
// Licence: Lesser GNU Public License 2.1 (LGPL)

// Powder Diffraction CIF (Crystallographic Information File)
// specification: http://www.iucr.org/iucr-top/cif/index.html
//
// This file doesn't implement full CIF grammar. The parser may fail to read
// some valid files and read invalid ones.
//
// There may be more than one data-blocks in one block (defined by the format
// specification), and the point counts of these data-blocks are different.
// To handle this, xylib uses a new xylib::Block with duplicated meta-info to
// represent them.
//
// implementation is based on the file format specification and the tcl/tk
// program ciftools

#ifndef XYLIB_PDCIF_H_
#define XYLIB_PDCIF_H_
#include "xylib.h"

namespace xylib {

    class PdCifDataSet : public DataSet
    {
        OBLIGATORY_DATASET_MEMBERS(PdCifDataSet)
    };

} // namespace

#endif // XYLIB_PDCIF_H_