Initial version of email gateway under CVS control.
[egate.git] / util / iso2709dump.c
1 /*
2    gw-res.c: Iso2709 record management
3
4    Europagate, 1994-1995.
5
6    $Log: iso2709dump.c,v $
7    Revision 1.1.1.1  1995/02/09 17:27:11  adam
8    Initial version of email gateway under CVS control.
9
10  */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14
15 #include <iso2709.h>
16
17 int main (int argc, char **argv)
18 {
19     char *buf;
20     Iso2709Rec rec;
21
22     while ((buf = iso2709_read (stdin)))
23     {
24         rec = iso2709_cvt (buf);
25         free (buf);
26     }
27     return 0;
28 }