/usr/include/libwaei/queryline.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 | #ifndef LW_QUERYLINE_INCLUDED
#define LW_QUERYLINE_INCLUDED
#define LW_QUERYLINE(object) (LwQueryLine*) object
#define LW_QUERYLINE_MAX_ATOMS 20
struct _LwQueryLine {
//Storage for the original query string
char *string;
//General search regexes
GRegex*** re_kanji;
GRegex*** re_furi;
GRegex*** re_roma;
GRegex*** re_mix;
//Specific regexes for the kanji dictionary
GRegex*** re_strokes;
GRegex*** re_frequency;
GRegex*** re_grade;
GRegex*** re_jlpt;
};
typedef struct _LwQueryLine LwQueryLine;
LwQueryLine* lw_queryline_new (void );
void lw_queryline_free (LwQueryLine*);
void lw_queryline_init (LwQueryLine*);
void lw_queryline_deinit (LwQueryLine*);
int lw_queryline_parse_edict_string (LwQueryLine*l, LwPreferences*, const char*, GError**);
int lw_queryline_parse_kanjidict_string (LwQueryLine*, LwPreferences*, const char*, GError**);
int lw_queryline_parse_exampledict_string (LwQueryLine*, LwPreferences*, const char*, GError**);
int lw_queryline_parse_edict_string (LwQueryLine*, LwPreferences*, const char*, GError**);
#endif
|