This file is indexed.

/usr/include/tercpp/tools.h is in libtercpp-dev 0.6.2+svn46-1.1+b1.

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef __TERCPPTOOLS_H__
#define __TERCPPTOOLS_H__


#include <vector>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <sstream>
#include <boost/xpressive/xpressive.hpp>


using namespace std;

namespace Tools
{
    typedef vector<double> vecDouble;
    typedef vector<char> vecChar;
    typedef vector<int> vecInt;
    typedef vector<float> vecFloat;
    typedef vector<size_t> vecSize_t;
    typedef vector<string> vecString;
    typedef vector<string> alignmentElement;
    typedef vector<alignmentElement> WERalignment;


struct param
{
    bool debugMode;
    string referenceFile;     // path to the resources
    string hypothesisFile;     // path to the configuration files
    string outputFileExtension;
    string outputFileName;
    bool noPunct;
    bool caseOn;
    bool normalize;
    bool tercomLike;
    bool sgmlInputs;
    bool noTxtIds;
    bool printAlignments;
    bool WER;
    int debugLevel;
};
// param = { false, "","","","" };

// class tools{
// private:
// public:

    string vectorToString ( vector<string> vec );
    string vectorToString ( vector<string> vec, string s );
    vector<string> subVector ( vector<string> vec, int start, int end );
    vector<int> subVector ( vector<int> vec, int start, int end );
    vector<float> subVector ( vector<float> vec, int start, int end );
    vector<string> copyVector ( vector<string> vec );
    vector<int> copyVector ( vector<int> vec );
    vector<float> copyVector ( vector<float> vec );
    vector<string> stringToVector ( string s, string tok );
    vector<int> stringToVectorInt ( string s, string tok );
    vector<float> stringToVectorFloat ( string s, string tok );
    string lowerCase(string str);
    string removePunct(string str);
    string tokenizePunct(string str);
    string removePunctTercom(string str);
    string normalizeStd(string str);
    string printParams(param p);
// };
    param copyParam(param p);
}
#endif