6b8b749c3e71e1c6890c83694c25e848a0754c6b
[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.10  2000-01-31 13:15:21  adam
8  * Removed uses of assert(3). Cleanup of ODR. CCL parser update so
9  * that some characters are not surrounded by spaces in resulting term.
10  * ILL-code updates.
11  *
12  * Revision 1.9  1999/11/30 13:47:11  adam
13  * Improved installation. Moved header files to include/yaz.
14  *
15  * Revision 1.8  1995/09/29 17:12:18  quinn
16  * Smallish
17  *
18  * Revision 1.7  1995/09/27  15:02:55  quinn
19  * Modified function heads & prototypes.
20  *
21  * Revision 1.6  1995/05/22  11:32:01  quinn
22  * Fixing Interface to odr_null.
23  *
24  * Revision 1.5  1995/05/16  08:50:46  quinn
25  * License, documentation, and memory fixes
26  *
27  * Revision 1.4  1995/04/18  08:15:16  quinn
28  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
29  * neater. We'll make the same change for decoding one day.
30  *
31  * Revision 1.3  1995/03/08  12:12:09  quinn
32  * Added better error checking.
33  *
34  * Revision 1.2  1995/02/09  15:51:46  quinn
35  * Works better now.
36  *
37  * Revision 1.1  1995/02/02  16:21:52  quinn
38  * First kick.
39  *
40  */
41
42 #include <yaz/odr.h>
43
44 /*
45  * BER-en/decoder for NULL type.
46  */
47 int ber_null(ODR o)
48 {
49     switch (o->direction)
50     {
51         case ODR_ENCODE:
52             if (odr_putc(o, 0X00) < 0)
53                 return 0;
54 #ifdef ODR_DEBUG
55             fprintf(stderr, "[NULL]\n");
56 #endif
57             return 1;
58         case ODR_DECODE:
59             if (*(o->bp++) != 0X00)
60             {
61                 o->error = OPROTO;
62                 return 0;
63             }
64 #ifdef ODR_DEBUG
65             fprintf(stderr, "[NULL]\n");
66 #endif
67             return 1;
68         case ODR_PRINT: return 1;
69         default: o->error = OOTHER; return 0;
70     }
71 }