This file is indexed.

/usr/lib/Wt/examples/webgl/readObj.h is in witty-examples 3.3.0-1build1.

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 READOBJ_H_
#define READOBJ_H_

#include <vector>
#include <string>
#include <boost/tuple/tuple.hpp>

// Function to read a very limited subset of obj files. Only reads
// files with triangles. Supports v, vn, t and f.
void readObj(const std::string &fname,
             std::vector<float> &data);

#endif