This file is indexed.

/usr/include/anthy/dicutil.h is in libanthy-dev 9100h-25ubuntu1.

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
/*
 * Interface for personal dictionary
 */
#ifndef _dicutil_h_included_
#define _dicutil_h_included_

#ifdef __cplusplus
extern "C" {
#endif

/* ÊÖ¤êÃÍ / anthy_priv_dic_add_entry*/
/* OK / ñ¸ì¤¬ÅÐÏ¿¤Ç¤­¤¿ */
#define ANTHY_DIC_UTIL_OK 0
/* ¼ºÇÔ / ÅÐÏ¿¤Ë¼ºÇÔ¤·¤¿ */
#define ANTHY_DIC_UTIL_ERROR -1
/* Ʊ¤¸Ã±¸ì¤¬ÅÐÏ¿¤·¤Æ¤¢¤Ã¤¿¡¢ÉÑÅÙ¤À¤±¤ò¾å½ñ¤­ */
#define ANTHY_DIC_UTIL_DUPLICATE -2
/* ¼­½ñ¤¬Â¸ºß¤·¤Ê¤¤ */
#define ANTHY_DIC_UTIL_INVALID -3

void anthy_dic_util_init(void);
void anthy_dic_util_quit(void);
void anthy_dic_util_set_personality(const char *);
const char *anthy_dic_util_get_anthydir(void);
#define HAS_ANTHY_DICUTIL_SET_ENCODING
int anthy_dic_util_set_encoding(int );

void anthy_priv_dic_delete(void);
int anthy_priv_dic_select_first_entry(void);
int anthy_priv_dic_select_next_entry(void);
int anthy_priv_dic_select_entry(const char *);/* not implemented */

char *anthy_priv_dic_get_index(char *buf, int len);
int anthy_priv_dic_get_freq(void);
char *anthy_priv_dic_get_wtype(char *buf, int len);
char *anthy_priv_dic_get_word(char *buf, int len);

int anthy_priv_dic_add_entry(const char *yomi, const char *word,
			     const char *wt, int freq);

/* experimental and unstable /usr/share/dict/words¤«¤éñ¸ì¤òõ¤¹ */
#define HAS_ANTHY_DIC_SEARCH_WORDS_FILE
char *anthy_dic_search_words_file(const char *word);

#ifdef __cplusplus
}
#endif

#endif