X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_len.c;h=e772e73d7eabb2c0d0468898405ab748b4f9243d;hb=a19243ec18959150a30c63c521fc5b0af860ce18;hp=c770780a01b201dd7c81c13d7151d4424b0f5e83;hpb=657fb99115b87a5244e9a33bbe4ca3d9d18849c4;p=yaz-moved-to-github.git diff --git a/odr/ber_len.c b/odr/ber_len.c index c770780..e772e73 100644 --- a/odr/ber_len.c +++ b/odr/ber_len.c @@ -1,10 +1,16 @@ /* - * Copyright (C) 1995, Index Data. + * Copyright (C) 1995-1999, Index Data. * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_len.c,v $ - * Revision 1.5 1995-09-27 15:02:55 quinn + * Revision 1.7 1999-01-08 11:23:23 adam + * Added const modifier to some of the BER/ODR encoding routines. + * + * Revision 1.6 1995/09/29 17:12:17 quinn + * Smallish + * + * Revision 1.5 1995/09/27 15:02:55 quinn * Modified function heads & prototypes. * * Revision 1.4 1995/05/16 08:50:45 quinn @@ -24,7 +30,7 @@ * Returns: =0 success, indefinite start-marker set. 1 byte encoded. * Returns: -1 failure, out of bounds. */ -int MDF ber_enclen(ODR o, int len, int lenlen, int exact) +int ber_enclen(ODR o, int len, int lenlen, int exact) { unsigned char octs[sizeof(int)]; int n = 0; @@ -88,9 +94,9 @@ int MDF ber_enclen(ODR o, int len, int lenlen, int exact) * len = -1 indefinite. * len >= 0 Length. */ -int MDF ber_declen(unsigned char *buf, int *len) +int ber_declen(const unsigned char *buf, int *len) { - unsigned char *b = buf; + const unsigned char *b = buf; int n; if (*b == 0X80) /* Indefinite */