Added prototype for atoi_n.
[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.5  1997-09-04 07:58:36  adam
8  * Added prototype for atoi_n.
9  *
10  * Revision 1.4  1997/09/01 08:49:54  adam
11  * New windows NT/95 port using MSV5.0. To export DLL functions the
12  * YAZ_EXPORT modifier was added. Defined in yconfig.h.
13  *
14  * Revision 1.3  1997/05/14 06:53:54  adam
15  * C++ support.
16  *
17  * Revision 1.2  1996/02/20 17:58:09  adam
18  * Added const to yaz_matchstr.
19  *
20  * Revision 1.1  1996/02/20  16:32:49  quinn
21  * Created util file.
22  *
23  *
24  */
25
26 #ifndef YAZ_UTIL_H
27 #define YAZ_UTIL_H
28
29 #include <yconfig.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 YAZ_EXPORT int yaz_matchstr(const char *s1, const char *s2);
36 YAZ_EXPORT int atoi_n (const char *buf, int len);
37
38 #ifdef __cplusplus
39 }
40 #endif
41
42 #endif