X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=odr%2Fodr.c;h=520673d7d27b66dae236fbaada3dfccaa7f0ac7d;hb=62bcf7a811cd3151ac10f93317c9ddfa6b16f539;hp=5560934664402f47aa9855c8bd92cfd147eefa1e;hpb=d52639011c722745e5e6d563f8b6a41fb096a43b;p=yaz-moved-to-github.git diff --git a/odr/odr.c b/odr/odr.c index 5560934..520673d 100644 --- a/odr/odr.c +++ b/odr/odr.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr.c,v $ - * Revision 1.29 1999-04-27 08:34:10 adam + * Revision 1.31 1999-11-30 13:47:11 adam + * Improved installation. Moved header files to include/yaz. + * + * Revision 1.30 1999/08/27 09:40:32 adam + * Renamed logf function to yaz_log. Removed VC++ project files. + * + * Revision 1.29 1999/04/27 08:34:10 adam * Modified odr_destroy so that file is not closed when file is 0. * * Revision 1.28 1998/07/20 12:38:13 adam @@ -104,8 +110,8 @@ #include #include -#include -#include +#include +#include Odr_null *ODR_NULLVAL = "NULL"; /* the presence of a null value */ @@ -150,7 +156,7 @@ void odr_setprint(ODR o, FILE *file) o->print = file; } -#include +#include ODR odr_createmem(int direction) { @@ -169,7 +175,7 @@ ODR odr_createmem(int direction) r->enable_bias = 1; r->odr_ber_tag.lclass = -1; odr_reset(r); - logf (LOG_DEBUG, "odr_createmem dir=%d o=%p", direction, r); + yaz_log (LOG_DEBUG, "odr_createmem dir=%d o=%p", direction, r); return r; } @@ -187,7 +193,7 @@ void odr_reset(ODR o) nmem_reset(o->mem); o->choice_bias = -1; o->lenlen = 1; - logf (LOG_DEBUG, "odr_reset o=%p", o); + yaz_log (LOG_DEBUG, "odr_reset o=%p", o); } void odr_destroy(ODR o) @@ -198,7 +204,7 @@ void odr_destroy(ODR o) if (o->print && o->print != stderr) fclose(o->print); xfree(o); - logf (LOG_DEBUG, "odr_destroy o=%p", o); + yaz_log (LOG_DEBUG, "odr_destroy o=%p", o); } void odr_setbuf(ODR o, char *buf, int len, int can_grow)