SRW, CQL, 2003
[yaz-moved-to-github.git] / odr / ber_len.c
index ee70563..88602bd 100644 (file)
@@ -1,5 +1,16 @@
+/*
+ * Copyright (C) 1995-2003, Index Data.
+ * See the file LICENSE for details.
+ * Sebastian Hammer, Adam Dickmeiss
+ *
+ * $Id: ber_len.c,v 1.11 2003-01-06 08:20:27 adam Exp $
+ */
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
-#include <odr.h>
+#include "odr-priv.h"
 
 /*
  * Encode BER length octets. If exact, lenlen is the exact desired
@@ -73,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 */