関数list_XMLdescendantElements マニュアル

(The documentation of function list_XMLdescendantElements)

Last Update: 2023/2/21


◆機能・用途(Purpose)

XML要素の子孫要素をリストアップする。
List the descendant elements of an XML element.


◆形式(Format)

#include <xml/parent_child.h>
inline void list_XMLdescendantElements(struct XMLdata data)


◆引数(Arguments)

data 処理対象のXMLデータ。 各要素iについて メンバelements[i].depth, elements[i].forefathers の値が設定された状態で与えること。 関数内で各要素iについてメンバ elements[i].Ndescendants, elements[i].descendants の値が設定される。
The XML data to process. The values of members elements[i].depth and elements[i].forefathers for each element i have to be set before calling this function. The values of members elements[i].Ndescendants and elements[i].descendants for each element i are set within this function.


◆使用例(Example)

struct XMLdata data;
list_XMLdescendantElements(data);