[PHP-DEV] CVS update: php3/doc/functions From: jah (php-dev <email protected>)
Date: 06/25/98

Date: Thursday June 25, 1998 @ 13:37
Author: jah

Update of /repository/php3/doc/functions
In directory asf:/tmp/cvs-serv27654/doc/functions

Modified Files:
        pgsql.sgml
Log Message:

Bugs in documentation.

Index: php3/doc/functions/pgsql.sgml
diff -c php3/doc/functions/pgsql.sgml:1.19 php3/doc/functions/pgsql.sgml:1.20
*** php3/doc/functions/pgsql.sgml:1.19 Mon May 18 03:32:53 1998
--- php3/doc/functions/pgsql.sgml Thu Jun 25 13:37:57 1998
***************
*** 486,504 ****
     <refsect1>
      <title>Description</title>
      <funcsynopsis>
! <funcdef>void <function>pg_loread</function></funcdef>
       <paramdef>int <parameter>fd</parameter></paramdef>
! <paramdef>string <parameter>bufvar</parameter></paramdef>
      </funcsynopsis>
      <para>
       <function>pg_loread</function> reads at most
! <parameter>len</parameter> bytes from a large object into a
! variable name <parameter>bufvar</parameter>.
       <parameter>fd</parameter> specifies a valid large object file
! descriptor. <parameter>bufvar</parameter> specifies a valid buffer
! variable to contain the large object segment and
! <parameter>len</parameter> specifies the maximum allowable size
! of the large object segment.
     </refsect1>
    </refentry>
  
--- 486,502 ----
     <refsect1>
      <title>Description</title>
      <funcsynopsis>
! <funcdef>string <function>pg_loread</function></funcdef>
       <paramdef>int <parameter>fd</parameter></paramdef>
! <paramdef>int <parameter>len</parameter></paramdef>
      </funcsynopsis>
      <para>
       <function>pg_loread</function> reads at most
! <parameter>len</parameter> bytes from a large object and
! returns it as a string.
       <parameter>fd</parameter> specifies a valid large object file
! descriptor and<parameter>len</parameter> specifies the maximum
! allowable size of the large object segment.
     </refsect1>
    </refentry>
  
***************
*** 546,559 ****
     <refsect1>
      <title>Description</title>
      <funcsynopsis>
! <funcdef>void <function>pg_lowrite</function></funcdef>
       <paramdef>int <parameter>fd</parameter></paramdef>
       <paramdef>string <parameter>buf</parameter></paramdef>
      </funcsynopsis>
      <para>
! <function>pg_lowrite</function> writes at most
! <parameter>len</parameter> bytes to a large object from a
! variable <parameter>buf</parameter>.
       <parameter>fd</parameter> is a file descriptor for the large
       object from <function>pg_loopen</function>.
     </refsect1>
--- 544,557 ----
     <refsect1>
      <title>Description</title>
      <funcsynopsis>
! <funcdef>int <function>pg_lowrite</function></funcdef>
       <paramdef>int <parameter>fd</parameter></paramdef>
       <paramdef>string <parameter>buf</parameter></paramdef>
      </funcsynopsis>
      <para>
! <function>pg_lowrite</function> writes at most to a large object
! from a variable <parameter>buf</parameter> and returns the number
! of bytes actually written, or false in the case of an error.
       <parameter>fd</parameter> is a file descriptor for the large
       object from <function>pg_loopen</function>.
     </refsect1>