Moved towards generic character mapping depending on "structure"
[idzebra-moved-to-github.git] / include / charmap.h
1 /*
2  * Copyright (c) 1995-1997, Index Data.
3  * 
4  * All rights reserved.
5  * 
6  * Use and redistribution in source or binary form, with or without
7  * modification, of any or all of this software and documentation is
8  * permitted, provided that the following conditions are met:
9  * 
10  * 1. This copyright and permission notice appear with all copies of the
11  * software and its documentation. Notices of copyright or attribution
12  * which appear at the beginning of any file must remain unchanged.
13  * 
14  * 2. The names of Index Data or the individual authors may not be used to
15  * endorse or promote products derived from this software without specific
16  * prior written permission.
17  * 
18  * 3. Source code or binary versions of this software and its
19  * documentation may be used freely in not-for-profit applications. For
20  * profit applications - such as providing for-pay database services,
21  * marketing a product based in whole or in part on this software or its
22  * documentation, or generally distributing this software or its
23  * documentation under a different license - requires a commercial
24  * license from Index Data. The software may be installed and used for
25  * evaluation purposes in conjunction with a commercial application for a
26  * trial period no longer than 60 days.
27  * 
28  * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
29  * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
30  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
31  * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
32  * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
33  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
34  * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
35  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
36  * OF THIS SOFTWARE.
37  *
38  * $Log: charmap.h,v $
39  * Revision 1.4  1997-10-27 14:33:04  adam
40  * Moved towards generic character mapping depending on "structure"
41  * field in abstract syntax file. Fixed a few memory leaks. Fixed
42  * bug with negative integers when doing searches with relational
43  * operators.
44  *
45  * Revision 1.3  1997/09/05 15:29:59  adam
46  * Changed prototype for chr_map_input - added const.
47  * Added support for C++, headers uses extern "C" for public definitions.
48  *
49  */
50
51 #ifndef CHARMAP_H
52 #define CHARMAP_H
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 extern const char *CHR_UNKNOWN;
59 extern const char *CHR_SPACE;
60 extern const char *CHR_BASE;
61
62 struct chr_t_entry;
63 typedef struct chr_t_entry chr_t_entry;
64
65 typedef struct chrmaptab_info *chrmaptab;
66
67 chrmaptab chrmaptab_create(const char *tabpath, const char *name,
68                            int map_only);
69 void chrmaptab_destroy (chrmaptab tab);
70
71 const char **chr_map_input(chrmaptab t, const char **from, int len);
72
73 const char *chr_map_output(chrmaptab t, const char **from, int len);
74
75 #ifdef __cplusplus
76 }
77 #endif
78
79 #endif