Added better error checking.
[yaz-moved-to-github.git] / odr / odr_bool.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_bool.c,v $
7  * Revision 1.4  1995-03-08 12:12:20  quinn
8  * Added better error checking.
9  *
10  * Revision 1.3  1995/02/10  18:57:25  quinn
11  * More in the way of error-checking.
12  *
13  * Revision 1.2  1995/02/09  15:51:47  quinn
14  * Works better now.
15  *
16  * Revision 1.1  1995/02/02  16:21:53  quinn
17  * First kick.
18  *
19  */
20
21 #include <stdio.h>
22 #include <odr.h>
23
24 /*
25  * Top level boolean en/decoder.
26  * Returns 1 on success, 0 on error.
27  */
28 int odr_bool(ODR o, int **p, int opt)
29 {
30     int res, cons = 0;
31
32     if (o->error)
33         return 0;
34     if (o->t_class < 0)
35     {
36         o->t_class = ODR_UNIVERSAL;
37         o->t_tag = ODR_BOOLEAN;
38     }
39     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
40         return 0;
41     if (!res)
42         return opt;
43     if (o->direction == ODR_PRINT)
44     {
45         fprintf(o->print, "%s%s\n", odr_indent(o), (**p ? "TRUE" : "FALSE"));
46         return 1;
47     }
48     if (cons)
49         return 0;
50     if (o->direction == ODR_DECODE)
51         *p = nalloc(o, sizeof(int));
52     return ber_boolean(o, *p);
53 }