Bug fixes.
[yaz-moved-to-github.git] / odr / odr_bit.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_bit.c,v $
7  * Revision 1.3  1995-02-07 14:13:45  quinn
8  * Bug fixes.
9  *
10  * Revision 1.2  1995/02/03  17:04:37  quinn
11  * *** empty log message ***
12  *
13  * Revision 1.1  1995/02/02  20:38:50  quinn
14  * Updates.
15  *
16  *
17  */
18
19 #include <odr.h>
20 #include <string.h>
21
22 /*
23  * Top level bitstring string en/decoder.
24  * Returns 1 on success, 0 on error.
25  */
26 int odr_bitstring(ODR o, Odr_bitmask **p, int opt)
27 {
28     int res, cons = 0;
29
30     if (o->t_class < 0)
31     {
32         o->t_class = ODR_UNIVERSAL;
33         o->t_tag = ODR_BITSTRING;
34     }
35     if ((res = ber_tag(o, *p, o->t_class, o->t_tag, &cons)) < 0)
36         return 0;
37     if (!res)
38     {
39         *p = 0;
40         return opt;
41     }
42     if (o->direction == ODR_PRINT)
43     {
44         fprintf(o->print, "BITSTRING(len=%d)\n", (*p)->top + 1);
45         return 1;
46     }
47     if (o->direction == ODR_DECODE)
48     {
49         *p = nalloc(o, sizeof(Odr_bitmask));
50         memset((*p)->bits, 0, ODR_BITMASK_SIZE);
51         (*p)->top = -1;
52     }
53     return ber_bitstring(o, *p, cons);
54 }