X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;ds=sidebyside;f=include%2Fiso2709.h;h=ce7f050092a8c4638770e1c8ab483819e0139d04;hb=3f6af0f3aa9f114cf562c28f2ed0b954e4c5d659;hp=a327e06011191f1930d05c721d01093e19aee094;hpb=5bc115d3b598f5ad198411dcd033a91a8356c9be;p=egate.git diff --git a/include/iso2709.h b/include/iso2709.h index a327e06..ce7f050 100644 --- a/include/iso2709.h +++ b/include/iso2709.h @@ -3,13 +3,30 @@ Europagate, 1994-1995. - $Log: iso2709.h,v $ - Revision 1.1 1995/02/09 17:27:11 adam - Initial revision - + iso2709.h,v + * Revision 1.3 1995/02/10 17:05:14 adam + * New function iso2709_display to display MARC records in a + * line-by-line format. The iso2709_cvt function no longer + * prints the record to stderr. + * + * Revision 1.2 1995/02/10 16:50:25 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 ISO2709_H +#define ISO2709_H + typedef struct iso2709_rec *Iso2709Rec; char *iso2709_read (FILE *inf); Iso2709Rec iso2709_cvt (const char *buf); +void iso2709_rm (Iso2709Rec rec); +void iso2709_display (Iso2709Rec rec, FILE *out); + +#endif