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