X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Fcharsets.h;h=4efb3f03899873798385e5b2f4bc64f405163b55;hb=99575a52d01778b69909e5daf273c71651131cfc;hp=b09a78a4471ca06b5d1820c06554a5fa3f282c7c;hpb=ba5951a80fdd0da1d28c318852b69a1178cd6bfa;p=pazpar2-moved-to-github.git diff --git a/src/charsets.h b/src/charsets.h index b09a78a..4efb3f0 100644 --- a/src/charsets.h +++ b/src/charsets.h @@ -1,5 +1,5 @@ /* This file is part of Pazpar2. - Copyright (C) 2006-2010 Index Data + Copyright (C) 2006-2011 Index Data Pazpar2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -34,24 +34,20 @@ typedef struct pp2_relevance_token_s *pp2_relevance_token_t; pp2_charset_t pp2_charset_create_xml(xmlNode *xml_node); pp2_charset_t pp2_charset_create(struct icu_chain * icu_chn); +pp2_charset_t pp2_charset_create_a_to_z(void); + void pp2_charset_destroy(pp2_charset_t pct); void pp2_charset_incref(pp2_charset_t pct); -pp2_relevance_token_t pp2_relevance_tokenize(pp2_charset_t pct, - const char *buf, - int skip_article); +pp2_relevance_token_t pp2_relevance_tokenize(pp2_charset_t pct); +void pp2_relevance_first(pp2_relevance_token_t prt, + const char *buf, + int skip_article); + void pp2_relevance_token_destroy(pp2_relevance_token_t prt); const char *pp2_relevance_token_next(pp2_relevance_token_t prt); const char *pp2_get_sort(pp2_relevance_token_t prt); - -#if 0 -typedef int pp2_charset_normalize_t(pp2_charset_t pct, - const char *buf, - WRBUF norm_str, WRBUF sort_str, - int skip_article); - -pp2_charset_normalize_t pp2_charset_metadata_norm; -#endif +const char *pp2_get_display(pp2_relevance_token_t prt); #endif