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