Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / libedataserver / e-xml-utils.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* 
3  * Copyright (C) 2005 Novell, Inc.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU Lesser General Public
7  * License as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __E_XML_UTILS_H__
21 #define __E_XML_UTILS_H__
22
23 #include <glib.h>
24
25 #include <libxml/parser.h>
26
27 G_BEGIN_DECLS
28
29 xmlDocPtr   e_xml_parse_file (const char *filename);
30 int         e_xml_save_file  (const char *filename,
31                               xmlDocPtr   doc);
32 xmlNode    *e_xml_get_child_by_name (const xmlNode *parent,
33                                      const xmlChar *child_name);
34
35 G_END_DECLS
36
37 #endif /* __E_XML_UTILS_H__ */
38