1: #ifndef _textdict_h_included_
2: #define _textdict_h_included_
3:
4: struct textdict;
5:
6: struct textdict *anthy_textdict_open(const char *fn, int create);
7: void anthy_textdict_close(struct textdict *td);
8:
9: void anthy_textdict_scan(struct textdict *td, int offset, void *ptr,
10: int (*fn)(void *, int, const char *, const char *));
11: int anthy_textdict_insert_line(struct textdict *td,
12: int offset, const char *line);
13: int anthy_textdict_delete_line(struct textdict *td, int offset);
14:
15: #endif