9b165400b037d52bead260776ba0add12aeae260
[idzebra-moved-to-github.git] / isam / isutil.h
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: isutil.h,v $
7  * Revision 1.3  1999-05-26 07:49:14  adam
8  * C++ compilation.
9  *
10  * Revision 1.2  1999/02/02 14:51:18  adam
11  * Updated WIN32 code specific sections. Changed header.
12  *
13  * Revision 1.1  1994/09/12 08:02:14  quinn
14  * Not functional yet
15  *
16  */
17
18 /*
19  * Small utilities needed by the isam system. Some or all of these
20  * may move to util/ along the way.
21  */
22
23 #ifndef ISUTIL_H
24 #define ISUTIL_H
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 char *strconcat(const char *s1, ...);
31
32 int is_default_cmp(const void *k1, const void *k2); /* compare function */
33
34 #ifdef __cplusplus
35 }
36 #endif
37
38 #endif