7a57a60f9abf74bbe64d3701f24f35ebbf68235a
[egate.git] / include / iso2709.h
1 /*
2  * Record management
3  *
4  * Europagate, 1994-1995.
5  *
6  * $Log: iso2709.h,v $
7  * Revision 1.7  1995/03/27 12:50:40  adam
8  * New level: GW_LOG_ERRNO.
9  *
10  * Revision 1.6  1995/03/08  12:36:35  adam
11  * New function: dbc2709_cvt.
12  *
13  * Revision 1.5  1995/02/23  08:32:12  adam
14  * Changed header.
15  *
16  * Revision 1.3  1995/02/10  17:05:14  adam
17  * New function iso2709_display to display MARC records in a
18  * line-by-line format. The iso2709_cvt function no longer
19  * prints the record to stderr.
20  *
21  * Revision 1.2  1995/02/10  16:50:25  adam
22  * Indicator field moved to 'struct iso2709_dir' from 'struct
23  * iso2709_field'.
24  * Function iso2709_rm implemented - to delete a MARC record.
25  *
26  * Revision 1.1.1.1  1995/02/09  17:27:12  adam
27  * Initial version of email gateway under CVS control.
28  *
29  */
30
31 #ifndef ISO2709_H
32 #define ISO2709_H
33
34 typedef struct iso2709_rec *Iso2709Rec;
35
36 char *iso2709_read (FILE *inf);
37 Iso2709Rec iso2709_cvt (const char *buf);
38 void iso2709_rm (Iso2709Rec rec);
39 void iso2709_display (Iso2709Rec rec, FILE *out);
40
41 #endif