/usr/include/libwaei/dict.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 | #ifndef LW_DICT_INCLUDED
#define LW_DICT_INCLUDED
#define LW_DICT(object) (LwDict*) object
#define EXTENDS_LW_DICT \
char *filename; \
char *longname; \
char *shortname; \
LwDictType type;
//!
//! @brief Dictionary type assigned by the program. It determines the parsing algorithm
//!
typedef enum {
LW_DICTTYPE_EDICT, //!< Standard edict format dictionary
LW_DICTTYPE_KANJI, //!< Kanjidic format dictionary
LW_DICTTYPE_EXAMPLES, //!< Examples format dictionary
LW_DICTTYPE_UNKNOWN, //!< Unkown format which should use safe parsing
TOTAL_LW_DICTTYPES
} LwDictType;
#endif
|