/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef LABWC_XML_H #define LABWC_XML_H #include /* * Converts dotted attributes into nested nodes. * For example, the following node: * * * * is converted to: * * * * ShowMenu * root-menu * * 1 * 2 * * * */ void lab_xml_expand_dotted_attributes(xmlNode *root); #endif /* LABWC_XML_H */