Get rid of string type and replace with a bool type
[fidl.git] / xml-reader.h
blobc1948cba006fcfb22852083269ca5ff7346aba02
1 /*
2 * QEMU Marshalling Framework
3 * XML unmarshaller
5 * Copyright IBM, Corp. 2010
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
14 #ifndef XML_READER_H
15 #define XML_READER_H
17 #include "marshal.h"
19 Marshaller *xml_reader_open(FILE *filep);
20 void xml_reader_close(Marshaller *m);
22 #endif