This file is indexed.

/usr/share/doc/docbook-xsl-saxon/examples/mycode.c is in docbook-xsl-saxon 1.00.dfsg.1-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
#ifndef _My_Parser_h_
#define _My_Parser_h_
#include "MyFetch.h"
class My_Parser
{
public:
        //
        // Construction/Destruction
        //
        My_Parser();
        virtual      ~My_Parser() = 0;
        virtual int  parse(MyFetch &fetcher) = 0;
};
#endif