blob: 78f231f3388dcaadb09fa5b1260feb8cfcabb268 (
plain)
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
|
#include <stdio.h>
#include <string.h>
#include "../hangul/hangul.h"
int
main(int argc, char *argv[])
{
char* hanja_table_file = NULL;
char buf[256] = { '\0', };
if (argc > 1)
hanja_table_file = argv[1];
HanjaTable *table;
table = hanja_table_load(hanja_table_file);
while (fgets(buf, sizeof(buf), stdin) != NULL) {
char* p = strchr(buf, '\n');
if (p != NULL)
*p = '\0';
HanjaList *list = hanja_table_match_prefix(table, buf);
int i, n;
n = hanja_list_get_size(list);
for (i = 0; i < n; i++) {
const char* key = hanja_list_get_nth_key(list, i);
const char* value = hanja_list_get_nth_value(list, i);
const char* comment = hanja_list_get_nth_comment(list, i);
printf("%s:%s:%s\n", key, value, comment);
}
hanja_list_delete(list);
}
hanja_table_delete(table);
return 0;
}
|