2 * Copyright (C) 1995-2005, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: odr_int.c,v 1.4 2005-01-15 19:47:14 adam Exp $
9 * \brief Implements ODR INTEGER codec
18 * Top level integer en/decoder.
19 * Returns 1 on success, 0 on error.
21 int odr_integer(ODR o, int **p, int opt, const char *name)
29 o->t_class = ODR_UNIVERSAL;
30 o->t_tag = ODR_INTEGER;
32 if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt, name)) < 0)
35 return odr_missing(o, opt, name);
36 if (o->direction == ODR_PRINT)
39 odr_printf(o, "%d\n", **p);
44 odr_seterror(o, OPROTO, 1);
47 if (o->direction == ODR_DECODE)
48 *p = (int *)odr_malloc(o, sizeof(int));
49 return ber_integer(o, *p);