static const char *ent[] = { "lt;", "<", "gt;", ">", "quot;", """,
"apos;", "'", "amp;", "&", NULL
};
- switch_xml_root_t root = (switch_xml_root_t) malloc(sizeof(struct switch_xml_root));\r
- if (!root) return NULL;\r
- memset(root, '\0', sizeof(struct switch_xml_root));\r
+ switch_xml_root_t root = (switch_xml_root_t) malloc(sizeof(struct switch_xml_root));
+ if (!root) return NULL;
+ memset(root, '\0', sizeof(struct switch_xml_root));
root->xml.name = (char *) name;
root->cur = &root->xml;
strcpy(root->err, root->xml.txt = (char *)"");
switch_xml_t child;
if (!xml) return NULL;
- if (!(child = (switch_xml_t) malloc(sizeof(struct switch_xml)))) return NULL;\r
- memset(child, '\0', sizeof(struct switch_xml));\r
+ if (!(child = (switch_xml_t) malloc(sizeof(struct switch_xml)))) return NULL;
+ memset(child, '\0', sizeof(struct switch_xml));
child->name = (char *) name;
child->attr = SWITCH_XML_NIL;
child->off = off;