summaryrefslogtreecommitdiff
path: root/doc/libxml2-api.xml
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2004-08-03 21:58:41 +0000
committerDaniel Veillard <veillard@src.gnome.org>2004-08-03 21:58:41 +0000
commitf81a8e8b247ea52f7f07cec058bac0fb2067b973 (patch)
treede4538ff802cc8dd199fd47a6a752b0c95103da1 /doc/libxml2-api.xml
parent18a04f2a3c4d1803ac4f2e55da288ffd7bf9cf3b (diff)
downloadlibxml2-f81a8e8b247ea52f7f07cec058bac0fb2067b973.tar.gz
fixes documetation glitches raised by Oliver Stoeneberg Daniel
* doc/ChangeLog.xsl doc/downloads.html doc/xml.html doc/*: fixes documetation glitches raised by Oliver Stoeneberg Daniel
Diffstat (limited to 'doc/libxml2-api.xml')
-rw-r--r--doc/libxml2-api.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml
index d205ba54..a596e2d7 100644
--- a/doc/libxml2-api.xml
+++ b/doc/libxml2-api.xml
@@ -7415,28 +7415,28 @@ actually an xmlCharEncoding'/>
</function>
<function name='xmlBufferAdd' file='tree'>
<info>Add a string range to an XML buffer. if len == -1, the length of str is recomputed.</info>
- <return type='void'/>
+ <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/>
<arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/>
<arg name='str' type='const xmlChar *' info='the #xmlChar string'/>
<arg name='len' type='int' info='the number of #xmlChar to add'/>
</function>
<function name='xmlBufferAddHead' file='tree'>
<info>Add a string range to the beginning of an XML buffer. if len == -1, the length of @str is recomputed.</info>
- <return type='void'/>
+ <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/>
<arg name='buf' type='xmlBufferPtr' info='the buffer'/>
<arg name='str' type='const xmlChar *' info='the #xmlChar string'/>
<arg name='len' type='int' info='the number of #xmlChar to add'/>
</function>
<function name='xmlBufferCCat' file='tree'>
<info>Append a zero terminated C string to an XML buffer.</info>
- <return type='void'/>
+ <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/>
<arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/>
<arg name='str' type='const char *' info='the C char string'/>
</function>
<function name='xmlBufferCat' file='tree'>
<info>Append a zero terminated string to an XML buffer.</info>
- <return type='void'/>
- <arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/>
+ <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/>
+ <arg name='buf' type='xmlBufferPtr' info='the buffer to add to'/>
<arg name='str' type='const xmlChar *' info='the #xmlChar string'/>
</function>
<function name='xmlBufferContent' file='tree'>