hholzgra Sun Jan 22 15:25:40 2006 UTC
Modified files: /phpdoc/en/internals/zendapi/macros ZEND_PUTC.xml ZEND_PUTS.xml ZEND_WRITE.xml Log: output handlig macros documented http://cvs.php.net/viewcvs.cgi/phpdoc/en/internals/zendapi/macros/ZEND_PUTC.xml?r1=1.5&r2=1.6&diff_format=u Index: phpdoc/en/internals/zendapi/macros/ZEND_PUTC.xml diff -u phpdoc/en/internals/zendapi/macros/ZEND_PUTC.xml:1.5 phpdoc/en/internals/zendapi/macros/ZEND_PUTC.xml:1.6 --- phpdoc/en/internals/zendapi/macros/ZEND_PUTC.xml:1.5 Sun Jan 15 13:32:29 2006 +++ phpdoc/en/internals/zendapi/macros/ZEND_PUTC.xml Sun Jan 22 15:25:40 2006 @@ -1,9 +1,10 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.5 $ --> +<!-- $Revision: 1.6 $ --> +<!-- TODO: check: unicode-affected? --> <refentry id="zend-macro.zend-putc"> <refnamediv> <refname>ZEND_PUTC</refname> - <refpurpose>...</refpurpose> + <refpurpose>Write a single character to the default output stream</refpurpose> </refnamediv> <refsect1 role="description"> @@ -14,7 +15,7 @@ <methodparam><type>char</type><parameter>c</parameter></methodparam> </methodsynopsis> <para> - ... + Writes a single character <parameter>c</parameter> to the default output stream. </para> </refsect1> @@ -26,7 +27,7 @@ <term><parameter>c</parameter></term> <listitem> <para> - ... + Output character </para> </listitem> </varlistentry> @@ -37,10 +38,16 @@ <refsect1 role="returnvalues"> &reftitle.returnvalues; <para> - ... + Number of characters written or -1 on errors. </para> </refsect1> + <refsect1 role="seealso"> + &reftitle.seealso; + <para> + See also <function>ZEND_PUTS</function> and <function>ZEND_WRITE</function>. + </para> + </refsect1> </refentry> <!-- Keep this comment at the end of the file http://cvs.php.net/viewcvs.cgi/phpdoc/en/internals/zendapi/macros/ZEND_PUTS.xml?r1=1.5&r2=1.6&diff_format=u Index: phpdoc/en/internals/zendapi/macros/ZEND_PUTS.xml diff -u phpdoc/en/internals/zendapi/macros/ZEND_PUTS.xml:1.5 phpdoc/en/internals/zendapi/macros/ZEND_PUTS.xml:1.6 --- phpdoc/en/internals/zendapi/macros/ZEND_PUTS.xml:1.5 Sun Jan 15 13:32:29 2006 +++ phpdoc/en/internals/zendapi/macros/ZEND_PUTS.xml Sun Jan 22 15:25:40 2006 @@ -1,9 +1,10 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.5 $ --> +<!-- $Revision: 1.6 $ --> +<!-- TODO: check: unicode-affected? --> <refentry id="zend-macro.zend-puts"> <refnamediv> <refname>ZEND_PUTS</refname> - <refpurpose>...</refpurpose> + <refpurpose>Write a string to the default output stream</refpurpose> </refnamediv> <refsect1 role="description"> @@ -14,7 +15,7 @@ <methodparam><type>char *</type><parameter>str</parameter></methodparam> </methodsynopsis> <para> - ... + Writes the zero terminated string <parameter>str</parameter> to the default output stream. </para> </refsect1> @@ -26,7 +27,7 @@ <term><parameter>str</parameter></term> <listitem> <para> - ... + Output string </para> </listitem> </varlistentry> @@ -37,10 +38,16 @@ <refsect1 role="returnvalues"> &reftitle.returnvalues; <para> - ... + Number of characters written or -1 on errors. </para> </refsect1> + <refsect1 role="seealso"> + &reftitle.seealso; + <para> + See also <function>ZEND_PUTC</function> and <function>ZEND_WRITE</function>. + </para> + </refsect1> </refentry> <!-- Keep this comment at the end of the file http://cvs.php.net/viewcvs.cgi/phpdoc/en/internals/zendapi/macros/ZEND_WRITE.xml?r1=1.5&r2=1.6&diff_format=u Index: phpdoc/en/internals/zendapi/macros/ZEND_WRITE.xml diff -u phpdoc/en/internals/zendapi/macros/ZEND_WRITE.xml:1.5 phpdoc/en/internals/zendapi/macros/ZEND_WRITE.xml:1.6 --- phpdoc/en/internals/zendapi/macros/ZEND_WRITE.xml:1.5 Sun Jan 15 13:32:29 2006 +++ phpdoc/en/internals/zendapi/macros/ZEND_WRITE.xml Sun Jan 22 15:25:40 2006 @@ -1,9 +1,10 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.5 $ --> +<!-- $Revision: 1.6 $ --> +<!-- TODO: check: unicode-affected? --> <refentry id="zend-macro.zend-write"> <refnamediv> <refname>ZEND_WRITE</refname> - <refpurpose>...</refpurpose> + <refpurpose>Write character buffer to the default output stream</refpurpose> </refnamediv> <refsect1 role="description"> @@ -15,7 +16,8 @@ <methodparam><type>int</type><parameter>str_len</parameter></methodparam> </methodsynopsis> <para> - ... + Write <parameter>str_len</parameter> bytes from the buffer pointed to by + <parameter>str</parameter> to the default output stream. </para> </refsect1> @@ -27,7 +29,7 @@ <term><parameter>str</parameter></term> <listitem> <para> - ... + Pointer to character buffer </para> </listitem> </varlistentry> @@ -35,7 +37,7 @@ <term><parameter>str_len</parameter></term> <listitem> <para> - ... + Buffer length </para> </listitem> </varlistentry> @@ -46,7 +48,14 @@ <refsect1 role="returnvalues"> &reftitle.returnvalues; <para> - ... + Number of characters written or -1 on errors. + </para> + </refsect1> + + <refsect1 role="seealso"> + &reftitle.seealso; + <para> + See also <function>ZEND_PUTC</function> and <function>ZEND_PUTS</function>. </para> </refsect1>