関数read_xml_file マニュアル

(The documentation of function read_xml_file)

Last Update: 2022/10/28


◆機能・用途(Purpose)

XMLファイルの中身をstruct XMLdata型構造体に読み込む。
Read the content of an XML file to a struct XMLdata-type structure.


◆形式(Format)

#include <xml/readwrite.h>
inline struct XMLdata read_xml_file(const char ∗inputfile)


◆引数(Arguments)

inputfile 読み込むXMLファイル名。
The name of the XML file to read.


◆戻り値(Return value)

読み込んだXMLデータを格納した構造体。
A structure that consists of the XML data read.


◆使用例(Example)

struct XMLdata data=read_xml_file("sample.xml");