This file is indexed.

/usr/include/yacas/xmltokenizer.h is in yacas 1.3.6-2.

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
#ifndef _xmltokenizer_h_
#define _xmltokenizer_h_

#include "yacasbase.h"
#include "tokenizer.h"

class XmlTokenizer : public LispTokenizer
{
public:
  XmlTokenizer() {}
  /// NextToken returns a string representing the next token,
  /// or an empty list.
  const LispString* NextToken(LispInput& aInput,
                              LispHashTable& aHashTable);
};

#endif