New windows NT/95 port using MSV5.0. To export DLL functions the
[yaz-moved-to-github.git] / include / yaz-util.h
1 /*
2  * Copyright (c) 1995, Index Data.
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: yaz-util.h,v $
7  * Revision 1.4  1997-09-01 08:49:54  adam
8  * New windows NT/95 port using MSV5.0. To export DLL functions the
9  * YAZ_EXPORT modifier was added. Defined in yconfig.h.
10  *
11  * Revision 1.3  1997/05/14 06:53:54  adam
12  * C++ support.
13  *
14  * Revision 1.2  1996/02/20 17:58:09  adam
15  * Added const to yaz_matchstr.
16  *
17  * Revision 1.1  1996/02/20  16:32:49  quinn
18  * Created util file.
19  *
20  *
21  */
22
23 #ifndef YAZ_UTIL_H
24 #define YAZ_UTIL_H
25
26 #include <yconfig.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 YAZ_EXPORT int yaz_matchstr(const char *s1, const char *s2);
33
34 #ifdef __cplusplus
35 }
36 #endif
37
38 #endif