This file is indexed.

/usr/include/pretzel/fgparse.h is in pretzel 2.0n-2-0.3.

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
#line 64 "fgparse.nw"
#ifndef FGPARSE_H
#define FGPARSE_H

#line 152 "fgparse.nw"
#include <iostream>
#line 204 "fgparse.nw"
#include "fgscan.h"
#line 131 "fgparse.nw"
class Pparse_builder {
public:
  Pparse_builder();
  ~Pparse_builder();
  int build(istream*, ostream*);

  // for error diagnosis and debugging:
  char* error_text();
  int error_line();
  void debug_on();      // write what the generator is doing to cerr
  void debug_off();

private:
  
#line 198 "fgparse.nw"
  Fgscanner* scanner;
#line 145 "fgparse.nw"
};


#line 70 "fgparse.nw"
#endif