This file is indexed.

/usr/include/xylib/uxd.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
// Siemens/Bruker Diffrac-AT UXD text format (for powder diffraction data)
// Licence: Lesser GNU Public License 2.1 (LGPL)

// Binary files can be converted to UXD format with XCH tool.
// Implementation based on the analysis of sample files.

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

namespace xylib {

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

}
#endif // XYLIB_UXD_H_