License, documentation, and memory fixes
[yaz-moved-to-github.git] / odr / ber_null.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_null.c,v $
7  * Revision 1.5  1995-05-16 08:50:46  quinn
8  * License, documentation, and memory fixes
9  *
10  * Revision 1.4  1995/04/18  08:15:16  quinn
11  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
12  * neater. We'll make the same change for decoding one day.
13  *
14  * Revision 1.3  1995/03/08  12:12:09  quinn
15  * Added better error checking.
16  *
17  * Revision 1.2  1995/02/09  15:51:46  quinn
18  * Works better now.
19  *
20  * Revision 1.1  1995/02/02  16:21:52  quinn
21  * First kick.
22  *
23  */
24
25 #include <odr.h>
26
27 /*
28  * BER-en/decoder for NULL type.
29  */
30 int ber_null(ODR o, int *val)
31 {
32     switch (o->direction)
33     {
34         case ODR_ENCODE:
35             if (odr_putc(o, 0X00) < 0)
36                 return 0;
37 #ifdef ODR_DEBUG
38             fprintf(stderr, "[NULL]\n");
39 #endif
40             return 1;
41         case ODR_DECODE:
42             if (*(o->bp++) != 0X00)
43             {
44                 o->error = OPROTO;
45                 return 0;
46             }
47             o->left--;
48 #ifdef ODR_DEBUG
49             fprintf(stderr, "[NULL]\n");
50 #endif
51             return 1;
52         case ODR_PRINT: return 1;
53         default: o->error = OOTHER; return 0;
54     }
55 }