Improved installation. Moved header files to include/yaz.
[yaz-moved-to-github.git] / odr / odr_bool.c
1 /*
2  * Copyright (c) 1995-1999, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_bool.c,v $
7  * Revision 1.11  1999-11-30 13:47:11  adam
8  * Improved installation. Moved header files to include/yaz.
9  *
10  * Revision 1.10  1999/04/20 09:56:48  adam
11  * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
12  * Modified all encoders/decoders to reflect this change.
13  *
14  * Revision 1.9  1998/02/11 11:53:34  adam
15  * Changed code so that it compiles as C++.
16  *
17  * Revision 1.8  1995/09/29 17:12:23  quinn
18  * Smallish
19  *
20  * Revision 1.7  1995/09/27  15:02:58  quinn
21  * Modified function heads & prototypes.
22  *
23  * Revision 1.6  1995/05/16  08:50:52  quinn
24  * License, documentation, and memory fixes
25  *
26  * Revision 1.5  1995/03/17  10:17:49  quinn
27  * Added memory management.
28  *
29  * Revision 1.4  1995/03/08  12:12:20  quinn
30  * Added better error checking.
31  *
32  * Revision 1.3  1995/02/10  18:57:25  quinn
33  * More in the way of error-checking.
34  *
35  * Revision 1.2  1995/02/09  15:51:47  quinn
36  * Works better now.
37  *
38  * Revision 1.1  1995/02/02  16:21:53  quinn
39  * First kick.
40  *
41  */
42
43 #include <stdio.h>
44 #include <yaz/odr.h>
45
46 /*
47  * Top level boolean en/decoder.
48  * Returns 1 on success, 0 on error.
49  */
50 int odr_bool(ODR o, int **p, int opt, const char *name)
51 {
52     int res, cons = 0;
53
54     if (o->error)
55         return 0;
56     if (o->t_class < 0)
57     {
58         o->t_class = ODR_UNIVERSAL;
59         o->t_tag = ODR_BOOLEAN;
60     }
61     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
62         return 0;
63     if (!res)
64         return opt;
65     if (o->direction == ODR_PRINT)
66     {
67         odr_prname(o, name);
68         fprintf(o->print, "%s\n", (**p ? "TRUE" : "FALSE"));
69         return 1;
70     }
71     if (cons)
72         return 0;
73     if (o->direction == ODR_DECODE)
74         *p = (int *)odr_malloc(o, sizeof(int));
75     return ber_boolean(o, *p);
76 }