X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fyaz-iconv.h;h=4768805b037971ae2d13ebf36218d91892fb96c8;hb=24aa5ea66edef77f6d086275cc6370815aeaab60;hp=ad59e685200f745e3052230052d7b290f26cb684;hpb=e63923d5a33d54806b2d73670c26c57480c484da;p=yaz-moved-to-github.git diff --git a/include/yaz/yaz-iconv.h b/include/yaz/yaz-iconv.h index ad59e68..4768805 100644 --- a/include/yaz/yaz-iconv.h +++ b/include/yaz/yaz-iconv.h @@ -1,5 +1,5 @@ -/* - * Copyright (c) 1995-2006, Index Data +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -24,7 +24,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: yaz-iconv.h,v 1.13 2006-10-25 09:54:35 adam Exp $ */ /** * \file yaz-iconv.h @@ -68,14 +67,34 @@ YAZ_EXPORT int yaz_iconv_isbuiltin(yaz_iconv_t cd); /** \brief match strings - independent of case and '-' \param s1 first string - \param s2 second string + \param s2 second string (May include wildcard ? and .) \retval 0 strings are similar \retval !=0 strings are different */ YAZ_EXPORT int yaz_matchstr(const char *s1, const char *s2); +/** \brief match a and b with some delimitor for b + \param a first second + \param b second string + \param b_del delimitor for b + \retval 0 strings are similar + \retval !=0 strings are different +*/ YAZ_EXPORT int yaz_strcmp_del(const char *a, const char *b, const char *b_del); + +/** \brief compares two buffers of different size + \param a first buffer + \param b second buffer + \param len_a length of first buffer + \retval len_b length of second buffer + \retval 0 buffers are equal + \retval >0 a > b + \retval <0 a < b +*/ +int yaz_memcmp(const void *a, const void *b, size_t len_a, size_t len_b); + + /** \brief decodes UTF-8 sequence \param inp input buffer with UTF-8 bytes \param inbytesleft length of input buffer