This file is indexed.

/usr/include/libwaei/dictinfolist.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#ifndef LW_DICTINFOLIST_INCLUDED
#define LW_DICTINFOLIST_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/dictlist.h
//!
//! @brief To be written.
//!
//! To be written.
//!

#include <libwaei/dictinfo.h>

#define LW_DICTINFOLIST(object) (LwDictInfoList*) object

#define EXTENDS_LW_DICTINFOLIST \
  GList *list; \
  GMutex *mutex; \
  int max;

//!
//! @brief Primitive for storing lists of dictionaries
//!
struct _LwDictInfoList
{
  EXTENDS_LW_DICTINFOLIST
};
typedef struct _LwDictInfoList LwDictInfoList;


LwDictInfoList* lw_dictinfolist_new (const int, LwPreferences*);
void lw_dictinfolist_free (LwDictInfoList*);
void lw_dictinfolist_init (LwDictInfoList*, const int, LwPreferences*);
void lw_dictinfolist_deinit (LwDictInfoList*);

void lw_dictinfolist_add_dictionary (LwDictInfoList*, const LwDictType, const char*);

LwDictInfo* lw_dictinfolist_get_dictinfo (LwDictInfoList*, const LwDictType, const char*);
LwDictInfo* lw_dictinfolist_get_dictinfo_by_filename (LwDictInfoList*, const char*);
LwDictInfo* lw_dictinfolist_get_dictinfo_by_idstring (LwDictInfoList*, const char*);
LwDictInfo* lw_dictinfolist_get_dictinfo_fuzzy (LwDictInfoList*, const char*);
LwDictInfo* lw_dictinfolist_get_dictinfo_by_load_position (LwDictInfoList*, int);
gboolean lw_dictinfolist_check_if_loaded (LwDictInfoList*, const LwDictType, const char*);
void lw_dictinfolist_update_load_orders (LwDictInfoList*);
int lw_dictinfolist_get_total (LwDictInfoList*);
void lw_dictinfolist_clear (LwDictInfoList*);

void lw_dictinfolist_preform_postprocessing_by_name (LwDictInfoList*, char*, GError**);
void lw_dictinfolist_load_dictionary_order_from_pref (LwDictInfoList*, LwPreferences*);
void lw_dictinfolist_save_dictionary_order_pref (LwDictInfoList*, LwPreferences*);

void lw_dictinfolist_reload (LwDictInfoList*);




#endif