Added prettier client.
[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.6  1995-05-16 08:50:52  quinn
8  * License, documentation, and memory fixes
9  *
10  * Revision 1.5  1995/03/17  10:17:49  quinn
11  * Added memory management.
12  *
13  * Revision 1.4  1995/03/08  12:12:20  quinn
14  * Added better error checking.
15  *
16  * Revision 1.3  1995/02/10  18:57:25  quinn
17  * More in the way of error-checking.
18  *
19  * Revision 1.2  1995/02/09  15:51:47  quinn
20  * Works better now.
21  *
22  * Revision 1.1  1995/02/02  16:21:53  quinn
23  * First kick.
24  *
25  */
26
27 #include <stdio.h>
28 #include <odr.h>
29
30 /*
31  * Top level boolean en/decoder.
32  * Returns 1 on success, 0 on error.
33  */
34 int odr_bool(ODR o, int **p, int opt)
35 {
36     int res, cons = 0;
37
38     if (o->error)
39         return 0;
40     if (o->t_class < 0)
41     {
42         o->t_class = ODR_UNIVERSAL;
43         o->t_tag = ODR_BOOLEAN;
44     }
45     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
46         return 0;
47     if (!res)
48         return opt;
49     if (o->direction == ODR_PRINT)
50     {
51         fprintf(o->print, "%s%s\n", odr_indent(o), (**p ? "TRUE" : "FALSE"));
52         return 1;
53     }
54     if (cons)
55         return 0;
56     if (o->direction == ODR_DECODE)
57         *p = odr_malloc(o, sizeof(int));
58     return ber_boolean(o, *p);
59 }