More in the way of error-checking.
[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.4  1995-02-10 18:57:25  quinn
8  * More in the way of error-checking.
9  *
10  * Revision 1.3  1995/02/09  15:51:48  quinn
11  * Works better now.
12  *
13  * Revision 1.2  1995/02/07  14:13:45  quinn
14  * Bug fixes.
15  *
16  * Revision 1.1  1995/02/02  16:21:53  quinn
17  * First kick.
18  *
19  */
20
21 #include <odr.h>
22
23 /*
24  * Top level integer en/decoder.
25  * Returns 1 on success, 0 on error.
26  */
27 int odr_integer(ODR o, int **p, int opt)
28 {
29     int res, cons = 0;
30
31     if (o->t_class < 0)
32     {
33         o->t_class = ODR_UNIVERSAL;
34         o->t_tag = ODR_INTEGER;
35     }
36     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons)) < 0)
37         return 0;
38     if (!res)
39         return opt;
40     if (o->direction == ODR_PRINT)
41     {
42         fprintf(o->print, "%s%d\n", odr_indent(o), **p);
43         return 1;
44     }
45     if (cons)
46         return 0;
47     if (o->direction == ODR_DECODE)
48         *p = nalloc(o, sizeof(int));
49     return ber_integer(o, *p);
50 }