Updated.
[yaz-moved-to-github.git] / odr / odr_bool.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_bool.c,v $
7  * Revision 1.8  1995-09-29 17:12:23  quinn
8  * Smallish
9  *
10  * Revision 1.7  1995/09/27  15:02:58  quinn
11  * Modified function heads & prototypes.
12  *
13  * Revision 1.6  1995/05/16  08:50:52  quinn
14  * License, documentation, and memory fixes
15  *
16  * Revision 1.5  1995/03/17  10:17:49  quinn
17  * Added memory management.
18  *
19  * Revision 1.4  1995/03/08  12:12:20  quinn
20  * Added better error checking.
21  *
22  * Revision 1.3  1995/02/10  18:57:25  quinn
23  * More in the way of error-checking.
24  *
25  * Revision 1.2  1995/02/09  15:51:47  quinn
26  * Works better now.
27  *
28  * Revision 1.1  1995/02/02  16:21:53  quinn
29  * First kick.
30  *
31  */
32
33 #include <stdio.h>
34 #include <odr.h>
35
36 /*
37  * Top level boolean en/decoder.
38  * Returns 1 on success, 0 on error.
39  */
40 int odr_bool(ODR o, int **p, int opt)
41 {
42     int res, cons = 0;
43
44     if (o->error)
45         return 0;
46     if (o->t_class < 0)
47     {
48         o->t_class = ODR_UNIVERSAL;
49         o->t_tag = ODR_BOOLEAN;
50     }
51     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
52         return 0;
53     if (!res)
54         return opt;
55     if (o->direction == ODR_PRINT)
56     {
57         fprintf(o->print, "%s%s\n", odr_indent(o), (**p ? "TRUE" : "FALSE"));
58         return 1;
59     }
60     if (cons)
61         return 0;
62     if (o->direction == ODR_DECODE)
63         *p = odr_malloc(o, sizeof(int));
64     return ber_boolean(o, *p);
65 }