This file is indexed.

/usr/include/tesseract/input_file_buffer.h is in libtesseract-dev 3.02.01-6.

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
// Copyright 2008 Google Inc.
// All Rights Reserved.
// Author: ahmadab@google.com (Ahmad Abdulkader)
//
// input_file_buffer.h: Declarations of a class for an object that
// represents an input file buffer.
//

#ifndef INPUT_FILE_BUFFER_H
#define INPUT_FILE_BUFFER_H

#include <stdio.h>
#include <string>
#ifdef USE_STD_NAMESPACE
using std::string;
#endif

namespace tesseract {
class InputFileBuffer {
  public:
    explicit InputFileBuffer(const string &file_name);
    virtual ~InputFileBuffer();
    int Read(void *buffer, int bytes_to_read);

  protected:
    string file_name_;
    FILE *fp_;
};
}

#endif  // INPUT_FILE_BUFFER_H__