This file is indexed.

/usr/include/libwaei/dictinfo.h is in libwaei-dev 3.2.0b1-1.

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

/******************************************************************************
    AUTHOR:
    File written and Copyrighted by Zachary Dovel. All Rights Reserved.

    LICENSE:
    This file is part of gWaei.

    gWaei is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    gWaei is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
    along with gWaei.  If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/

//!
//! @file src/include/libwaei/dictinfo.h
//!
//! @brief To be written.
//!
//! To be written.
//!

#include <libwaei/dict.h>
#include <libwaei/resultline.h>

#define LW_DICTINFO(object) (LwDictInfo*) object

//!
//! @brief Primitive for storing dictionary information
//!
struct _LwDictInfo
{
    EXTENDS_LW_DICT
    int load_position;                //!< load position in the GUI
    long length;                    //!< Length of the file
    LwResultLine *cached_resultlines; //!< Allocated resultline swapped with current_resultline when needed
    LwResultLine *current_resultline; //!< Allocated resultline where the current parsed result data resides
};
typedef struct _LwDictInfo LwDictInfo;


LwDictInfo* lw_dictinfo_new (const LwDictType, const char*);
void lw_dictinfo_free (LwDictInfo*);
void lw_dictinfo_init (LwDictInfo*, const LwDictType, const char*);
void lw_dictinfo_deinit (LwDictInfo*);

gboolean lw_dictinfo_uninstall (LwDictInfo*, LwIoProgressCallback, GError**);
char* lw_dictinfo_get_uri (LwDictInfo*);


#endif