*** empty log message ***
[yaz-moved-to-github.git] / odr / odr_null.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_null.c,v $
7  * Revision 1.6  1995-05-22 11:32:03  quinn
8  * Fixing Interface to odr_null.
9  *
10  * Revision 1.5  1995/05/16  08:50:56  quinn
11  * License, documentation, and memory fixes
12  *
13  * Revision 1.4  1995/03/08  12:12:26  quinn
14  * Added better error checking.
15  *
16  * Revision 1.3  1995/02/10  18:57:25  quinn
17  * More in the way of error-checking.
18  *
19  * Revision 1.2  1995/02/09  15:51:49  quinn
20  * Works better now.
21  *
22  * Revision 1.1  1995/02/02  16:21:54  quinn
23  * First kick.
24  *
25  */
26
27 #include <odr.h>
28
29 /*
30  * Top level null en/decoder.
31  * Returns 1 on success, 0 on error.
32  */
33 int odr_null(ODR o, Odr_null **p, int opt)
34 {
35     int res, cons = 0;
36
37     if (o->error)
38         return 0;
39     if (o->t_class < 0)
40     {
41         o->t_class = ODR_UNIVERSAL;
42         o->t_tag = ODR_NULL;
43     }
44     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
45         return 0;
46     if (!res)
47         return opt;
48     if (o->direction == ODR_PRINT)
49     {
50         fprintf(o->print, "%sNULL\n", odr_indent(o));
51         return 1;
52     }
53     if (cons)
54     {
55         o->error = OPROTO;
56         return 0;
57     }
58     if (o->direction == ODR_DECODE)
59         *p = ODR_NULLVAL;
60     return ber_null(o);
61 }