New module recctrl. Used to manage records (extract/retrieval).
[idzebra-moved-to-github.git] / recctrl / sgmlread.c
1 /*
2  * Copyright (C) 1994-1996, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: sgmlread.c,v $
7  * Revision 1.1  1996-10-11 10:57:32  adam
8  * New module recctrl. Used to manage records (extract/retrieval).
9  *
10  */
11 #include <stdio.h>
12 #include <assert.h>
13 #include <string.h>
14
15 #include "grsread.h"
16
17 data1_node *grs_read_sgml (struct grs_read_info *p)
18 {
19     return data1_read_record (p->readf, p->fh, p->mem);
20 }