Updated information about YAZ.
[yaz-moved-to-github.git] / include / yaz / yaz-util.h
1 /*
2  * Copyright (c) 1995-1997, Index Data.
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: yaz-util.h,v $
7  * Revision 1.1  1999-11-30 13:47:11  adam
8  * Improved installation. Moved header files to include/yaz.
9  *
10  * Revision 1.6  1997/10/27 13:52:46  adam
11  * Header yaz-util includes all YAZ utility header files.
12  *
13  * Revision 1.5  1997/09/04 07:58:36  adam
14  * Added prototype for atoi_n.
15  *
16  * Revision 1.4  1997/09/01 08:49:54  adam
17  * New windows NT/95 port using MSV5.0. To export DLL functions the
18  * YAZ_EXPORT modifier was added. Defined in yconfig.h.
19  *
20  * Revision 1.3  1997/05/14 06:53:54  adam
21  * C++ support.
22  *
23  * Revision 1.2  1996/02/20 17:58:09  adam
24  * Added const to yaz_matchstr.
25  *
26  * Revision 1.1  1996/02/20  16:32:49  quinn
27  * Created util file.
28  */
29
30 #ifndef YAZ_UTIL_H
31 #define YAZ_UTIL_H
32
33 #include <yaz/yconfig.h>
34 #include <yaz/xmalloc.h>
35 #include <yaz/log.h>
36 #include <yaz/tpath.h>
37 #include <yaz/options.h>
38 #include <yaz/wrbuf.h>
39 #include <yaz/nmem.h>
40 #include <yaz/readconf.h>
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46 YAZ_EXPORT int yaz_matchstr(const char *s1, const char *s2);
47 YAZ_EXPORT int atoi_n (const char *buf, int len);
48
49 #ifdef __cplusplus
50 }
51 #endif
52
53 #endif