Directive s=pw sets structure to phrase if term includes blank(s).
[yaz-moved-to-github.git] / odr / ber_len.c
index ee70563..e57997a 100644 (file)
@@ -1,5 +1,35 @@
+/*
+ * Copyright (C) 1995-2000, Index Data.
+ * See the file LICENSE for details.
+ * Sebastian Hammer, Adam Dickmeiss
+ *
+ * $Log: ber_len.c,v $
+ * Revision 1.9  2000-02-29 13:44:55  adam
+ * Check for config.h (currently not generated).
+ *
+ * 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
+ * Modified function heads & prototypes.
+ *
+ * Revision 1.4  1995/05/16  08:50:45  quinn
+ * License, documentation, and memory fixes
+ *
+ *
+ */
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
-#include <odr.h>
+#include <yaz/odr.h>
 
 /*
  * Encode BER length octets. If exact, lenlen is the exact desired
@@ -73,9 +103,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 */