ab19cffec240852c21495f7f47883bf488a968ba
[yaz-moved-to-github.git] / src / xml_to_opac.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2013 Index Data
3  * See the file LICENSE for details.
4  */
5 /**
6  * \file xml_to_opac.c
7  * \brief Implements XML to OPAC conversion
8  */
9 #if HAVE_CONFIG_H
10 #include <config.h>
11 #endif
12
13 #include <stdio.h>
14 #include <string.h>
15 #include <stdlib.h>
16
17 #include <yaz/proto.h>
18 #include <yaz/marcdisp.h>
19
20 #if YAZ_HAVE_XML2
21 #include <libxml/parser.h>
22 #include <libxml/tree.h>
23
24 void yaz_xml_to_opac(yaz_marc_t mt, xmlNode *src, Z_OPACRecord **dst,
25                      yaz_iconv_t cd)
26 {
27
28 }
29 #endif
30
31 /*
32  * Local variables:
33  * c-basic-offset: 4
34  * c-file-style: "Stroustrup"
35  * indent-tabs-mode: nil
36  * End:
37  * vim: shiftwidth=4 tabstop=8 expandtab
38  */
39