X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=odr%2Fber_len.c;h=c770780a01b201dd7c81c13d7151d4424b0f5e83;hp=ee705635386130f10fc2fe495c9b6b76d207f4b8;hb=657fb99115b87a5244e9a33bbe4ca3d9d18849c4;hpb=aa82967af8f06004b567ad1ed40c67b056c44e7b diff --git a/odr/ber_len.c b/odr/ber_len.c index ee70563..c770780 100644 --- a/odr/ber_len.c +++ b/odr/ber_len.c @@ -1,3 +1,18 @@ +/* + * Copyright (C) 1995, Index Data. + * See the file LICENSE for details. + * Sebastian Hammer, Adam Dickmeiss + * + * $Log: ber_len.c,v $ + * 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 + * + * + */ + #include #include @@ -9,7 +24,7 @@ * Returns: =0 success, indefinite start-marker set. 1 byte encoded. * Returns: -1 failure, out of bounds. */ -int ber_enclen(ODR o, int len, int lenlen, int exact) +int MDF ber_enclen(ODR o, int len, int lenlen, int exact) { unsigned char octs[sizeof(int)]; int n = 0; @@ -73,7 +88,7 @@ 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 MDF ber_declen(unsigned char *buf, int *len) { unsigned char *b = buf; int n;