Added body-of-text to BIB-1 ANY and the WAIS profile
[yaz-moved-to-github.git] / odr / ber_bool.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_bool.c,v $
7  * Revision 1.8  1995-09-29 17:12:16  quinn
8  * Smallish
9  *
10  * Revision 1.7  1995/09/27  15:02:55  quinn
11  * Modified function heads & prototypes.
12  *
13  * Revision 1.6  1995/05/16  08:50:43  quinn
14  * License, documentation, and memory fixes
15  *
16  * Revision 1.5  1995/04/18  08:15:14  quinn
17  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
18  * neater. We'll make the same change for decoding one day.
19  *
20  * Revision 1.4  1995/03/21  10:17:27  quinn
21  * Fixed little bug in decoder.
22  *
23  * Revision 1.3  1995/03/08  12:12:06  quinn
24  * Added better error checking.
25  *
26  * Revision 1.2  1995/02/09  15:51:45  quinn
27  * Works better now.
28  *
29  * Revision 1.1  1995/02/02  16:21:51  quinn
30  * First kick.
31  *
32  */
33
34 #include <stdio.h>
35 #include <odr.h>
36
37
38 int ber_boolean(ODR o, int *val)
39 {
40     int res, len;
41
42     switch (o->direction)
43     {
44         case ODR_ENCODE:
45             if (ber_enclen(o, 1, 1, 1) != 1)
46                 return 0;
47             if (odr_putc(o, *val) < 0)
48                 return 0;
49 #ifdef ODR_DEBUG
50             fprintf(stderr, "[val=%d]\n", *val);
51 #endif
52             return 1;
53         case ODR_DECODE:
54             if ((res = ber_declen(o->bp, &len)) < 0)
55             {
56                 o->error = OPROTO;
57                 return 0;
58             }
59             if (len != 1)
60             {
61                 o->error = OPROTO;
62                 return 0;
63             }
64             o->bp+= res;
65             o->left -= res;
66             *val = *o->bp;
67             o->bp++;
68             o->left--;
69 #ifdef ODR_DEBUG
70             fprintf(stderr, "[val=%d]\n", *val);
71 #endif
72             return 1;
73         case ODR_PRINT:
74             return 1;
75         default: o->error = OOTHER; return 0;
76     }
77 }