* Use new cligen cvv options.

* NOTE cannot use old CLIgen API
This commit is contained in:
Olof hagsand 2021-10-31 15:46:41 +01:00
parent a52b92bd43
commit 46647089ad
4 changed files with 34 additions and 19 deletions

View file

@ -581,10 +581,11 @@ xml_parent(cxobj *xn)
return xn->x_up;
}
/*! Set parent of xnode, parent is copied.
/*! Set parent of xml node.
* @param[in] xn xml node
* @param[in] parent pointer to new parent xml node
* @retval 0 OK
* @see xml_child_rm remove child from parent
*/
int
xml_parent_set(cxobj *xn,
@ -1986,8 +1987,6 @@ xml_copy(cxobj *x0,
return retval;
}
/*! Create and return a copy of xml tree.
*
* @code