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