ref: 17b3ae4f1a1ce71b26bd2d383c9be513af29bb66
dir: /libxml/xmlelem.c/
#include <u.h>
#include <libc.h>
#include "xml.h"
Elem *
xmlelem(Xml *xp, Elem **root, Elem *parent, char *name)
{
Elem *ep, *t;
USED(xp);
if((ep = xmlcalloc(xp, sizeof(Elem), 1)) == nil)
sysfatal("no memory - %r\n");
if(! *root){
*root = ep;
}
else{
for (t = *root; t->next; t = t->next)
continue;
t->next = ep;
}
ep->parent = parent;
if(name)
if((ep->name = xmlstrdup(xp, name, 1)) == nil)
sysfatal("no memory - %r\n");
return ep;
}