X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_len.c;h=c9ff2feba4336d7bfaeede4512c11d7128653422;hb=d205d4870b1d64af05e9d6f6a2223086af4cce9e;hp=d9b43ab0acf0d805135cb408b071b70d2e175eca;hpb=63cafe41a93427118959a74201b3e331169a71d9;p=yaz-moved-to-github.git diff --git a/odr/ber_len.c b/odr/ber_len.c index d9b43ab..c9ff2fe 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.6 1995-09-29 17:12:17 quinn + * Revision 1.8 1999-11-30 13:47:11 adam + * Improved installation. Moved header files to include/yaz. + * + * 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 @@ -17,7 +23,7 @@ */ #include -#include +#include /* * Encode BER length octets. If exact, lenlen is the exact desired @@ -91,9 +97,9 @@ int ber_enclen(ODR o, int len, int lenlen, int exact) * len = -1 indefinite. * len >= 0 Length. */ -int 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 */