]> granicus.if.org Git - php/commitdiff
Beautified some protos.
authorEgon Schmid <eschmid@php.net>
Tue, 8 Aug 2000 20:28:19 +0000 (20:28 +0000)
committerEgon Schmid <eschmid@php.net>
Tue, 8 Aug 2000 20:28:19 +0000 (20:28 +0000)
ext/ftp/php_ftp.c
ext/gettext/gettext.c

index f4e2cc7b64d7e131db59142d7f1098e8869feb02..233d7079728fa32e529287de027190bc4fe091c9 100644 (file)
@@ -24,8 +24,7 @@
    | If you did not, or have any questions about PHP licensing, please    |
    | contact core@php.net.                                                |
    +----------------------------------------------------------------------+
-   | Authors:                                                             |
-   |          Andrew Skalski      <askalski@chek.com>                     |
+   | Authors: Andrew Skalski      <askalski@chek.com>                     |
    +----------------------------------------------------------------------+
  */
 
@@ -130,7 +129,7 @@ PHP_MINIT_FUNCTION(ftp)
        }
 
 /* {{{ proto int ftp_connect(string host [, int port])
-   Open a FTP stream */
+   Opens a FTP stream */
 PHP_FUNCTION(ftp_connect)
 {
        pval            *arg1, *arg2;
index cf70362289db834939892e4ce0fd9107aa1f1474..71dfc63fe02e2da487c6bd15e82f24930e8438a1 100644 (file)
@@ -53,7 +53,7 @@ PHP_MINFO_FUNCTION(gettext)
 }
 
 /* {{{ proto string textdomain(string domain)
-   Set the textdomain to "domain". Returns the current domain. */
+   Set the textdomain to "domain". Returns the current domain */
 PHP_FUNCTION(textdomain)
 {
     pval **domain;
@@ -79,7 +79,7 @@ PHP_FUNCTION(textdomain)
 /* }}} */
 
 /* {{{ proto string gettext(string msgid)
-   Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist. */
+   Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist */
 PHP_FUNCTION(gettext)
 {
     pval **msgid;
@@ -97,7 +97,7 @@ PHP_FUNCTION(gettext)
 /* }}} */
 
 /* {{{ proto string dgettext(string domain_name, string msgid)
-   Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist. */
+   Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist */
 PHP_FUNCTION(dgettext)
 {
        pval **domain_name, **msgid;
@@ -118,7 +118,7 @@ PHP_FUNCTION(dgettext)
 /* }}} */
 
 /* {{{ proto string dcgettext(string domain_name, string msgid, long category)
-   Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist. */
+   Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist */
 PHP_FUNCTION(dcgettext)
 {
        pval **domain_name, **msgid, **category;
@@ -142,7 +142,7 @@ PHP_FUNCTION(dcgettext)
 /* }}} */
 
 /* {{{ proto string bindtextdomain(string domain_name, string dir)
-   Bind to the text domain domain_name, looking for translations in dir. Returns the current domain. */
+   Bind to the text domain domain_name, looking for translations in dir. Returns the current domain */
 PHP_FUNCTION(bindtextdomain)
 {
        pval **domain_name, **dir;