/usr/include/libinstpatch-1.0/libinstpatch/IpatchXml.h is in libinstpatch-dev 1.0.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | /*
* libInstPatch
* Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1
* of the License only.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA or on the web at http://www.gnu.org.
*
*/
/**
* SECTION: IpatchXml
* @short_description: XML tree functions
* @see_also: IpatchXmlObject
* @stability: Stable
*
* Functions for manipulating XML node trees and saving/loading to/from
* XML content in strings or files. XML node trees use the glib GNode N-ary
* tree data type for added flexibility.
*/
#ifndef __IPATCH_XML_H__
#define __IPATCH_XML_H__
#include <glib.h>
typedef struct _IpatchXmlNode IpatchXmlNode;
typedef struct _IpatchXmlAttr IpatchXmlAttr;
/**
* IpatchXmlAttr:
* @name: Attribute name
* @value: Attribute value
*
* Structure for storing an XML attribute.
*/
struct _IpatchXmlAttr
{
char *name;
char *value;
};
/**
* IpatchXmlNode:
* @name: XML element name
* @value: XML text value or %NULL
* @attributes: Linked list of #IpatchXmlAttr structures
*
* An XML element node. Note that a given node can contain only one text value.
*/
struct _IpatchXmlNode
{
char *name; /* XML element name */
char *value; /* Text content of element */
GData *qdata; /* To associate arbitrary data with XML nodes */
GList *attributes; /* List of IpatchXmlAttr structures */
};
GNode *ipatch_xml_new_node (GNode *parent, const char *name, const char *value,
const char *attr_name, ...);
GNode *ipatch_xml_new_node_strv (GNode *parent, const char *name, const char *value,
const char **attr_names, const char **attr_values);
gpointer ipatch_xml_get_data (GNode *node, const char *key);
void ipatch_xml_set_data (GNode *node, const char *key, gpointer data);
void ipatch_xml_set_data_full (GNode *node, const char *key, gpointer data,
GDestroyNotify destroy_func);
gpointer ipatch_xml_steal_data (GNode *node, const char *key);
gpointer ipatch_xml_get_qdata (GNode *node, GQuark quark);
void ipatch_xml_set_qdata (GNode *node, GQuark quark, gpointer data);
void ipatch_xml_set_qdata_full (GNode *node, GQuark quark, gpointer data,
GDestroyNotify destroy_func);
gpointer ipatch_xml_steal_qdata (GNode *node, GQuark quark);
void ipatch_xml_destroy (GNode *node);
GNode *ipatch_xml_copy (GNode *node);
void ipatch_xml_set_name (GNode *node, const char *name);
void ipatch_xml_set_value (GNode *node, const char *value);
void ipatch_xml_set_value_printf (GNode *node, const char *format, ...);
void ipatch_xml_take_name (GNode *node, char *name);
void ipatch_xml_take_value (GNode *node, char *value);
G_CONST_RETURN char *ipatch_xml_get_name (GNode *node);
gboolean ipatch_xml_test_name (GNode *node, const char *cmpname);
G_CONST_RETURN char *ipatch_xml_get_value (GNode *node);
char *ipatch_xml_dup_value (GNode *node);
gboolean ipatch_xml_test_value (GNode *node, const char *cmpvalue);
void ipatch_xml_set_attribute (GNode *node, const char *attr_name,
const char *attr_value);
void ipatch_xml_set_attributes (GNode *node, const char *attr_name,
const char *attr_value, const char *attr2_name, ...);
G_CONST_RETURN char *ipatch_xml_get_attribute (GNode *node, const char *name);
gboolean ipatch_xml_test_attribute (GNode *node, const char *attr_name,
const char *cmpval);
GNode *ipatch_xml_find_child (GNode *node, const char *name);
GNode *ipatch_xml_find_by_path (GNode *node, const char *path);
char *ipatch_xml_to_str (GNode *node, guint indent);
gboolean ipatch_xml_save_to_file (GNode *node, guint indent, const char *filename,
GError **err);
GNode *ipatch_xml_from_str (const char *str, GError **err);
GNode *ipatch_xml_load_from_file (const char *filename, GError **err);
IpatchXmlNode *ipatch_xml_node_new (void);
void ipatch_xml_node_free (IpatchXmlNode *node);
IpatchXmlNode *ipatch_xml_node_duplicate (const IpatchXmlNode *xmlnode);
IpatchXmlAttr *ipatch_xml_attr_new (void);
void ipatch_xml_attr_free (IpatchXmlAttr *attr);
IpatchXmlAttr *ipatch_xml_attr_duplicate (const IpatchXmlAttr *attr);
#endif
|