関数list_XMLforefatherElements マニュアル

(The documentation of function list_XMLforefatherElements)

Last Update: 2023/2/21


◆機能・用途(Purpose)

XML要素の先祖要素をリストアップする。
List the forefather elements of an XML element.


◆形式(Format)

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


◆引数(Arguments)

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


◆使用例(Example)

struct XMLdata data;
list_XMLforefatherElements(data);