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