First kick.
[yaz-moved-to-github.git] / odr / odr_null.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_null.c,v $
7  * Revision 1.1  1995-02-02 16:21:54  quinn
8  * First kick.
9  *
10  */
11
12 #include <odr.h>
13
14 /*
15  * Top level null en/decoder.
16  * Returns 1 on success, 0 on error.
17  */
18 int odr_null(ODR o, int **p, int opt)
19 {
20     int res, cons = 0;
21     static int nullval = 0;
22
23     if (o->t_class < 0)
24     {
25         o->t_class = ODR_UNIVERSAL;
26         o->t_tag = ODR_NULL;
27     }
28     if ((res = ber_tag(o, *p, o->t_class, o->t_tag, &cons)) < 0)
29         return 0;
30     if (!res)
31     {
32         *p = 0;
33         return opt;
34     }
35     if (o->direction == ODR_PRINT)
36     {
37         fprintf(o->print, "NULL\n");
38         return 1;
39     }
40     if (cons)
41         return 0;
42     if (o->direction == ODR_DECODE)
43         *p = &nullval;
44     return ber_null(o, *p);
45 }