mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-09 14:09:57 +00:00
6a062afd64
Tweek look-n-feel. Fix comment editing. Use format_text() for comments, too.
67 lines
2.2 KiB
HTML
67 lines
2.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Mini-XML Programmers Manual, Version 2.0</TITLE>
|
|
<META NAME="author" CONTENT="Michael Sweet">
|
|
<META NAME="copyright" CONTENT="Copyright 2003-2004">
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-iso-8859-1">
|
|
<LINK REL="Start" HREF="index.html">
|
|
<LINK REL="Contents" HREF="toc.html">
|
|
<LINK REL="Prev" HREF="mxmlSaveAllocString.html">
|
|
<LINK REL="Next" HREF="mxmlSaveString.html">
|
|
<STYLE TYPE="text/css"><!--
|
|
BODY { font-family: serif }
|
|
H1 { font-family: sans-serif }
|
|
H2 { font-family: sans-serif }
|
|
H3 { font-family: sans-serif }
|
|
H4 { font-family: sans-serif }
|
|
H5 { font-family: sans-serif }
|
|
H6 { font-family: sans-serif }
|
|
SUB { font-size: smaller }
|
|
SUP { font-size: smaller }
|
|
PRE { font-family: monospace }
|
|
--></STYLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<A HREF="toc.html">Contents</A>
|
|
<A HREF="mxmlSaveAllocString.html">Previous</A>
|
|
<A HREF="mxmlSaveString.html">Next</A>
|
|
<HR NOSHADE>
|
|
<H3><A name="mxmlSaveFile">mxmlSaveFile()</A></H3>
|
|
<HR noshade/>
|
|
<H4>Description</H4>
|
|
<P>Save an XML tree to a file. The callback argument specifies a
|
|
function that returns a whitespace character or nul (0) before and
|
|
after each element. If MXML_NO_CALLBACK is specified, whitespace will
|
|
only be added before MXML_TEXT nodes with leading whitespace and before
|
|
attribute names inside opening element tags.</P>
|
|
<H4>Syntax</H4>
|
|
<PRE>
|
|
int
|
|
mxmlSaveFile(
|
|
<A href="mxmlnodet.html#mxml_node_t">mxml_node_t</A> * node,
|
|
FILE * fp,
|
|
const char * (*cb)(mxml_node_t *node, int ws));
|
|
</PRE>
|
|
<H4>Arguments</H4>
|
|
<P class="table"></P>
|
|
<TABLE align="center" border="1" cellpadding="5" cellspacing="0" width="80%">
|
|
<THEAD></THEAD>
|
|
<TR bgcolor="#cccccc"><TH>Name</TH><TH>Description</TH></TR>
|
|
<TBODY></TBODY>
|
|
<TR><TD><TT>node</TT></TD><TD>Node to write</TD></TR>
|
|
<TR><TD><TT>fp</TT></TD><TD>File to write to</TD></TR>
|
|
<TR><TD><TT>(*cb)(mxml_node_t *node, int ws)</TT></TD><TD>Whitespace
|
|
callback or MXML_NO_CALLBACK</TD></TR>
|
|
</TABLE>
|
|
<H4>Returns</H4>
|
|
<P>0 on success, -1 on error.</P>
|
|
|
|
<!-- NEW PAGE -->
|
|
<HR NOSHADE>
|
|
<A HREF="toc.html">Contents</A>
|
|
<A HREF="mxmlSaveAllocString.html">Previous</A>
|
|
<A HREF="mxmlSaveString.html">Next</A>
|
|
</BODY>
|
|
</HTML>
|