Works better now.
[yaz-moved-to-github.git] / odr / odr_int.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_int.c,v $
7  * Revision 1.3  1995-02-09 15:51:48  quinn
8  * Works better now.
9  *
10  * Revision 1.2  1995/02/07  14:13:45  quinn
11  * Bug fixes.
12  *
13  * Revision 1.1  1995/02/02  16:21:53  quinn
14  * First kick.
15  *
16  */
17
18 #include <odr.h>
19
20 /*
21  * Top level integer en/decoder.
22  * Returns 1 on success, 0 on error.
23  */
24 int odr_integer(ODR o, int **p, int opt)
25 {
26     int res, cons = 0;
27
28     if (o->t_class < 0)
29     {
30         o->t_class = ODR_UNIVERSAL;
31         o->t_tag = ODR_INTEGER;
32     }
33     if (o->direction == ODR_DECODE)
34         *p =0;
35     if ((res = ber_tag(o, *p, o->t_class, o->t_tag, &cons)) < 0)
36     {
37         *p = 0;
38         return 0;
39     }
40     if (!res)
41     {
42         *p = 0;
43         return opt;
44     }
45     if (o->direction == ODR_PRINT)
46     {
47         fprintf(o->print, "%s%d\n", odr_indent(o), **p);
48         return 1;
49     }
50     if (cons)
51         return 0;
52     if (o->direction == ODR_DECODE)
53         *p = nalloc(o, sizeof(int));
54     return ber_integer(o, *p);
55 }