Changed introduction

SVN revision: 1272
This commit is contained in:
Stefan Ritt 2005-03-24 09:41:21 +00:00
parent b483f17825
commit 0222b39598

View File

@ -9,13 +9,13 @@
reading XML files. For writing an XML file from scratch, following reading XML files. For writing an XML file from scratch, following
functions can be used: functions can be used:
writer = mxml_open_document(file_name); writer = mxml_open_file(file_name);
mxml_start_element(writer, name); mxml_start_element(writer, name);
mxml_write_attribute(writer, name, value); mxml_write_attribute(writer, name, value);
mxml_write_value(writer, value); mxml_write_value(writer, value);
mxml_end_element(writer); mxml_end_element(writer);
... ...
mxml_close_document(writer); mxml_close_file(writer);
To read an XML file, the function To read an XML file, the function