Changed header.
[egate.git] / ccl / cclerrms.c
1 /*
2  * Europagate, 1995
3  *
4  * $Log: cclerrms.c,v $
5  * Revision 1.6  1995/02/23 08:31:59  adam
6  * Changed header.
7  *
8  * Revision 1.4  1995/02/14  16:20:54  adam
9  * Qualifiers are read from a file now.
10  *
11  * Revision 1.3  1995/02/14  10:25:56  adam
12  * The constructions 'qualifier rel term ...' implemented.
13  *
14  * Revision 1.2  1995/02/13  15:15:06  adam
15  * Added handling of qualifiers. Not finished yet.
16  *
17  * Revision 1.1  1995/02/13  12:35:20  adam
18  * First version of CCL. Qualifiers aren't handled yet.
19  *
20  */
21
22 char *err_msg_array[] = {
23     "Ok",
24     "Search word expected",
25     "')' expected",
26     "Set name expected",
27     "Operator expected",
28     "Unbalanced ')'",
29     "Unknown qualifier",
30     "Qualifiers applied twice",
31     "'=' expected",
32     "Bad relation",
33     "Left truncation not supported",
34     "Both left - and right truncation not supported",
35     "Right truncation not supported"
36 };
37
38 const char *ccl_err_msg (int ccl_errno)
39 {
40     return err_msg_array[ccl_errno];
41 }