X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaz-icu.c;h=c4fb91f604c97738e3ddffbcbf4caa43e7b40e89;hb=307c60cf35acbe8d004b002e59416a2ebe3cb32d;hp=92da87e0dbbd8a58b919129d77cb11b1acef96b7;hpb=b59f3a79326742a4432bda999670f0c85e2c83b7;p=yaz-moved-to-github.git diff --git a/util/yaz-icu.c b/util/yaz-icu.c index 92da87e..c4fb91f 100644 --- a/util/yaz-icu.c +++ b/util/yaz-icu.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: yaz-icu.c,v 1.5 2007-10-25 08:40:06 marc Exp $ + * $Id: yaz-icu.c,v 1.10 2007-11-08 09:29:39 adam Exp $ */ #if HAVE_CONFIG_H @@ -17,19 +17,22 @@ #include -#if HAVE_ICU +#if YAZ_HAVE_ICU #include #include +#include +#include +#include -#include +#include /* commando line and config parameters */ static struct config_t { char conffile[1024]; char print[1024]; int xmloutput; - struct icu_chain * chain; + yaz_icu_chain_t chain; FILE * infile; FILE * outfile; } config; @@ -55,7 +58,6 @@ void print_option_error(const struct config_t *p_config) " \n" " \n" " \n" - " \n" " \n" "\n" ); @@ -443,7 +445,7 @@ static void process_text_file(const struct config_t *p_config) if (!xml_locale || !strlen((const char *) xml_locale)) return; - config.chain = icu_chain_xml_config(xml_node, (uint8_t *) xml_locale, 0, + config.chain = icu_chain_xml_config(xml_node, (const char *) xml_locale, 0, &status); xmlFree(xml_locale); @@ -482,14 +484,14 @@ static void process_text_file(const struct config_t *p_config) " norm=\"%s\" display=\"%s\"/>\n", token_count, line_count, - icu_chain_get_norm(config.chain), - icu_chain_get_display(config.chain)); + icu_chain_token_norm(config.chain), + icu_chain_token_display(config.chain)); else fprintf(config.outfile, "%lu %lu '%s' '%s'\n", token_count, line_count, - icu_chain_get_norm(config.chain), - icu_chain_get_display(config.chain)); + icu_chain_token_norm(config.chain), + icu_chain_token_display(config.chain)); } } @@ -506,13 +508,13 @@ static void process_text_file(const struct config_t *p_config) free(line); } -#endif /* HAVE_ICU */ +#endif /* YAZ_HAVE_ICU */ int main(int argc, char **argv) { -#if HAVE_ICU +#if YAZ_HAVE_ICU read_params(argc, argv, &config); @@ -522,14 +524,14 @@ int main(int argc, char **argv) if (config.print && strlen(config.print)) print_info(&config); -#else /* HAVE_ICU */ +#else /* YAZ_HAVE_ICU */ printf("ICU not available on your system.\n" "Please install libicu36-dev and icu-doc or similar, " "re-configure and re-compile\n"); -#endif /* HAVE_ICU */ +#endif /* YAZ_HAVE_ICU */ return(0); }