Merge branch 'master' into sru_2_0
[yaz-moved-to-github.git] / include / yaz / matchstr.h
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2013 Index Data.
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of Index Data nor the names of its contributors
13  *       may be used to endorse or promote products derived from this
14  *       software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 /**
29  * \file matchstr.h
30  * \brief Header for YAZ iconv interface
31  */
32
33 #ifndef YAZ_MATCH_STR_H
34 #define YAZ_MATCH_STR_H
35
36 #include <stddef.h>
37 #include <yaz/yconfig.h>
38
39 YAZ_BEGIN_CDECL
40
41 /** \brief match strings - independent of case and '-'
42     \param s1 first string
43     \param s2 second string (May include wildcard ? and .)
44     \retval 0 strings are similar
45     \retval !=0 strings are different
46 */
47 YAZ_EXPORT int yaz_matchstr(const char *s1, const char *s2);
48
49 /** \brief match a and b with some delimitor for b
50     \param a first second
51     \param b second string
52     \param b_del delimitor for b
53     \retval 0 strings are similar
54     \retval !=0 strings are different
55 */
56 YAZ_EXPORT int yaz_strcmp_del(const char *a, const char *b, const char *b_del);
57
58
59 /** \brief compares two buffers of different size
60     \param a first buffer
61     \param b second buffer
62     \param len_a length of first buffer
63     \retval len_b length of second buffer
64     \retval 0 buffers are equal
65     \retval >0 a > b
66     \retval <0 a < b
67 */
68 YAZ_EXPORT int yaz_memcmp(const void *a, const void *b,
69                           size_t len_a, size_t len_b);
70
71 /** \brief ala strncasecmp - no locale
72     \param s1 first buffer
73     \param s2 second buffer
74     \param n number of bytes to compare
75     \retval 0 buffers are equal
76     \retval >0 a > b
77     \retval <0 a < b
78 */
79 YAZ_EXPORT int yaz_strncasecmp(const char *s1, const char *s2, size_t n);
80
81 /** \brief ala strcasecmp - no locale
82     \param s1 first buffer
83     \param s2 second buffer
84     \retval 0 buffers are equal
85     \retval >0 a > b
86     \retval <0 a < b
87 */
88 YAZ_EXPORT int yaz_strcasecmp(const char *s1, const char *s2);
89
90 /** \brief strcmp, null may be passed
91     \param s1 first buffer or NULL
92     \param s2 second buffer or NULL
93     \retval 0 buffers are equal
94     \retval >0 a > b
95     \retval <0 a < b
96 */
97 YAZ_EXPORT int yaz_strcmp_null(const char *s1, const char *s2);
98
99 YAZ_END_CDECL
100
101 #endif
102 /*
103  * Local variables:
104  * c-basic-offset: 4
105  * c-file-style: "Stroustrup"
106  * indent-tabs-mode: nil
107  * End:
108  * vim: shiftwidth=4 tabstop=8 expandtab
109  */
110