X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fmarcdisp.h;h=db7197e1efa6416945a3686b66b101c99d476540;hp=d7e14364e0f9095a0b6bff9fe472ba45188da756;hb=ffb88e8bb97c6e24989b7f04b8bbf1a4203d2f72;hpb=99268f722648e84bf5c54eb685a1434e100f38a1 diff --git a/include/marcdisp.h b/include/marcdisp.h index d7e1436..db7197e 100644 --- a/include/marcdisp.h +++ b/include/marcdisp.h @@ -24,7 +24,26 @@ * OF THIS SOFTWARE. * * $Log: marcdisp.h,v $ - * Revision 1.2 1995-05-16 08:50:32 quinn + * Revision 1.8 1997-09-24 13:35:45 adam + * Added two members to data1_marctab to ease reading of weird MARC records. + * + * Revision 1.7 1997/09/04 07:57:51 adam + * Definition of ISO2709 control characters to this file. + * + * Revision 1.6 1997/09/01 08:49:49 adam + * New windows NT/95 port using MSV5.0. To export DLL functions the + * YAZ_EXPORT modifier was added. Defined in yconfig.h. + * + * Revision 1.5 1997/05/14 06:53:40 adam + * C++ support. + * + * Revision 1.4 1995/09/29 17:12:03 quinn + * Smallish + * + * Revision 1.3 1995/09/27 15:02:47 quinn + * Modified function heads & prototypes. + * + * Revision 1.2 1995/05/16 08:50:32 quinn * License, documentation, and memory fixes * * Revision 1.1 1995/04/10 10:28:28 quinn @@ -32,5 +51,24 @@ * */ -int marc_display (const char *buf, FILE *outf); +#ifndef MARCDISP_H +#define MARCDISP_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +YAZ_EXPORT int marc_display (const char *buf, FILE *outf); +YAZ_EXPORT int marc_display_ex (const char *buf, FILE *outf, int debug); + +#define ISO2709_RS 035 +#define ISO2709_FS 036 +#define ISO2709_IDFS 037 + +#ifdef __cplusplus +} +#endif +#endif