X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=odr%2Fber_int.c;h=8b5ea7d307411697278256fb6859fe4dadaf99a9;hp=88b647f9170e01101df038c13ca0b621e34d1359;hb=8030536c98d595898b316df5eb118b1d6398450c;hpb=9c459af695605b44a044ad206562818be10034f1 diff --git a/odr/ber_int.c b/odr/ber_int.c index 88b647f..8b5ea7d 100644 --- a/odr/ber_int.c +++ b/odr/ber_int.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_int.c,v $ - * Revision 1.10 1995-09-29 17:01:50 quinn + * Revision 1.12 1996-07-06 19:58:33 quinn + * System headerfiles gathered in yconfig + * + * Revision 1.11 1995/09/29 17:12:16 quinn + * Smallish + * + * Revision 1.10 1995/09/29 17:01:50 quinn * More Windows work * * Revision 1.9 1995/09/28 10:12:39 quinn @@ -38,23 +44,18 @@ */ -#include - -#ifdef WINDOWS -#include -#else -#include /* for htons... */ -#endif +#define YNETINCLUDE +#include #include #include #include -static int MDF ber_encinteger(ODR o, int val); -static int MDF ber_decinteger(unsigned char *buf, int *val); +static int ber_encinteger(ODR o, int val); +static int ber_decinteger(unsigned char *buf, int *val); -int MDF ber_integer(ODR o, int *val) +int ber_integer(ODR o, int *val) { int res; @@ -81,7 +82,7 @@ int MDF ber_integer(ODR o, int *val) /* * Returns: number of bytes written or -1 for error (out of bounds). */ -int MDF ber_encinteger(ODR o, int val) +int ber_encinteger(ODR o, int val) { int lenpos; int a, len; @@ -111,7 +112,7 @@ int MDF ber_encinteger(ODR o, int val) /* * Returns: Number of bytes read or 0 if no match, -1 if error. */ -int MDF ber_decinteger(unsigned char *buf, int *val) +int ber_decinteger(unsigned char *buf, int *val) { unsigned char *b = buf, fill; int res, len, remains;