X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=include%2Fiso2709p.h;h=3fd4558bee71eb10f98a0ebb034164c12265f1b5;hb=890cdaa817fe87d209ce4038a0615346106df4cf;hp=0c8472f2c5fe457dc57358dc0e03c2c6b30d021b;hpb=061d3d5b03fe909376317e1c03208a6b063bc9d0;p=egate.git diff --git a/include/iso2709p.h b/include/iso2709p.h index 0c8472f..3fd4558 100644 --- a/include/iso2709p.h +++ b/include/iso2709p.h @@ -4,15 +4,22 @@ Europagate, 1994-1995. $Log: iso2709p.h,v $ - Revision 1.1 1995/02/09 17:27:11 adam - Initial revision - + Revision 1.2 1995/02/10 16:50:26 adam + Indicator field moved to 'struct iso2709_dir' from 'struct + iso2709_field'. + Function iso2709_rm implemented - to delete a MARC record. + + * Revision 1.1.1.1 1995/02/09 17:27:12 adam + * Initial version of email gateway under CVS control. + * */ +#ifndef ISO2709P_H +#define ISO2709P_H + #include struct iso2709_field { - char *indicator; char *identifier; char *data; struct iso2709_field *next; @@ -22,6 +29,7 @@ struct iso2709_dir { char tag[4]; int length; int offset; + char *indicator; struct iso2709_dir *next; struct iso2709_field *fields; }; @@ -45,3 +53,5 @@ struct iso2709_rec { #define ISO2709_FS 036 #define ISO2709_IDFS 037 + +#endif