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