summaryrefslogtreecommitdiff
path: root/anthy/prediction.h
blob: d24ac5dec556c0bfea924d7bbcbe1b08731a941a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __prediction_h_included__
#define __prediction_h_included__

#include "xstr.h"

struct prediction_t {
  int timestamp;
  /* 読み */
  xstr *src_str;
  /* 結果の文字列 */
  xstr *str;
};

/* 予測された文字列を格納する */
int anthy_traverse_record_for_prediction(xstr*, struct prediction_t*);


#endif