*** empty log message ***
[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.6  1995-05-22 11:32:01  quinn
8  * Fixing Interface to odr_null.
9  *
10  * Revision 1.5  1995/05/16  08:50:46  quinn
11  * License, documentation, and memory fixes
12  *
13  * Revision 1.4  1995/04/18  08:15:16  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.3  1995/03/08  12:12:09  quinn
18  * Added better error checking.
19  *
20  * Revision 1.2  1995/02/09  15:51:46  quinn
21  * Works better now.
22  *
23  * Revision 1.1  1995/02/02  16:21:52  quinn
24  * First kick.
25  *
26  */
27
28 #include <odr.h>
29
30 /*
31  * BER-en/decoder for NULL type.
32  */
33 int ber_null(ODR o)
34 {
35     switch (o->direction)
36     {
37         case ODR_ENCODE:
38             if (odr_putc(o, 0X00) < 0)
39                 return 0;
40 #ifdef ODR_DEBUG
41             fprintf(stderr, "[NULL]\n");
42 #endif
43             return 1;
44         case ODR_DECODE:
45             if (*(o->bp++) != 0X00)
46             {
47                 o->error = OPROTO;
48                 return 0;
49             }
50             o->left--;
51 #ifdef ODR_DEBUG
52             fprintf(stderr, "[NULL]\n");
53 #endif
54             return 1;
55         case ODR_PRINT: return 1;
56         default: o->error = OOTHER; return 0;
57     }
58 }