Modified function heads & prototypes.
[yaz-moved-to-github.git] / odr / odr.c
index d4424c0..732f258 100644 (file)
--- a/odr/odr.c
+++ b/odr/odr.c
@@ -4,7 +4,16 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: odr.c,v $
- * Revision 1.13  1995-05-22 11:32:02  quinn
+ * Revision 1.16  1995-09-27 15:02:57  quinn
+ * Modified function heads & prototypes.
+ *
+ * Revision 1.15  1995/08/15  12:00:22  quinn
+ * Updated External
+ *
+ * Revision 1.14  1995/06/19  12:38:46  quinn
+ * Added BER dumper.
+ *
+ * Revision 1.13  1995/05/22  11:32:02  quinn
  * Fixing Interface to odr_null.
  *
  * Revision 1.12  1995/05/16  08:50:49  quinn
@@ -66,25 +75,26 @@ char *odr_errlist[] =
     "Other error",
     "Protocol error",
     "Malformed data",
-    "Stack overflow"
+    "Stack overflow",
+    "Length of constructed type different from sum of members"
 };
 
-void odr_perror(ODR o, char *message)
+void MDF odr_perror(ODR o, char *message)
 {
     fprintf(stderr, "%s: %s\n", message, odr_errlist[o->error]);
 }
 
-int odr_geterror(ODR o)
+int MDF odr_geterror(ODR o)
 {
     return o->error;
 }
 
-void odr_setprint(ODR o, FILE *file)
+void MDF odr_setprint(ODR o, FILE *file)
 {
     o->print = file;
 }
 
-ODR odr_createmem(int direction)
+ODR MDF odr_createmem(int direction)
 {
     struct odr *r;
 
@@ -102,7 +112,7 @@ ODR odr_createmem(int direction)
     return r;
 }
 
-void odr_reset(ODR o)
+void MDF odr_reset(ODR o)
 {
     o->error = ONONE;
     o->bp = o->buf;
@@ -115,9 +125,10 @@ void odr_reset(ODR o)
     o->stackp = -1;
     odr_release_mem(o->mem);
     o->mem = 0;
+    o->choice_bias = -1;
 }
     
-void odr_destroy(ODR o)
+void MDF odr_destroy(ODR o)
 {
     odr_release_mem(o->mem);
     if (o->ecb.buf && o->ecb.can_grow)
@@ -127,7 +138,7 @@ void odr_destroy(ODR o)
     free(o);
 }
 
-void odr_setbuf(ODR o, char *buf, int len, int can_grow)
+void MDF odr_setbuf(ODR o, char *buf, int len, int can_grow)
 {
     o->buf = o->bp = (unsigned char *) buf;
     o->buflen = o->left = len;
@@ -138,7 +149,7 @@ void odr_setbuf(ODR o, char *buf, int len, int can_grow)
     o->ecb.size = len;
 }
 
-char *odr_getbuf(ODR o, int *len, int *size)
+char MDF *odr_getbuf(ODR o, int *len, int *size)
 {
     *len = o->ecb.top;
     if (size)