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