First kick.
[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.1  1995-02-02 16:21:53  quinn
8  * First kick.
9  *
10  */
11
12 #include <odr.h>
13
14 /*
15  * Top level integer en/decoder.
16  * Returns 1 on success, 0 on error.
17  */
18 int odr_integer(ODR o, int **p, int opt)
19 {
20     int res, cons = 0;
21
22     if (o->t_class < 0)
23     {
24         o->t_class = ODR_UNIVERSAL;
25         o->t_tag = ODR_INTEGER;
26     }
27     if ((res = ber_tag(o, *p, o->t_class, o->t_tag, &cons)) < 0)
28         return 0;
29     if (!res)
30     {
31         *p = 0;
32         return opt;
33     }
34     if (o->direction == ODR_PRINT)
35     {
36         fprintf(o->print, "%d\n", **p);
37         return 1;
38     }
39     if (cons)
40         return 0;
41     if (o->direction == ODR_DECODE)
42         *p = nalloc(o, sizeof(int));
43     return ber_integer(o, *p);
44 }