This file is indexed.

/usr/include/pretzel/Ppparse.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
/* header file for a prettyprinting parser */

/* NB: This file is NOT protected against double inclusion! */

#include "Pparse.h" // include abstract base class

#ifndef PPARSE_NAME
#define PPARSE_NAME Ppparse
#endif

class PPARSE_NAME : public Pparse {
public:
  PPARSE_NAME();
  ~PPARSE_NAME();
  int prettyprint(istream*, ostream*);
  int prettyprint(istream*, Output*);

  void debug_on();
  void debug_off();
};