X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=odr%2Fber_len.c;h=88602bd968438887c877fe5ca9d7960740bd3695;hp=d9b43ab0acf0d805135cb408b071b70d2e175eca;hb=4d531a1a9131d69c3b6c27fbac42837e22cff61c;hpb=63cafe41a93427118959a74201b3e331169a71d9 diff --git a/odr/ber_len.c b/odr/ber_len.c index d9b43ab..88602bd 100644 --- a/odr/ber_len.c +++ b/odr/ber_len.c @@ -1,23 +1,16 @@ /* - * Copyright (C) 1995, Index Data. + * Copyright (C) 1995-2003, 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 - * 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 - * License, documentation, and memory fixes - * - * + * $Id: ber_len.c,v 1.11 2003-01-06 08:20:27 adam Exp $ */ +#if HAVE_CONFIG_H +#include +#endif #include -#include +#include "odr-priv.h" /* * Encode BER length octets. If exact, lenlen is the exact desired @@ -91,9 +84,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 */