]> granicus.if.org Git - php/commitdiff
Most functions don't have protos.
authorEgon Schmid <eschmid@php.net>
Thu, 24 Feb 2000 07:46:56 +0000 (07:46 +0000)
committerEgon Schmid <eschmid@php.net>
Thu, 24 Feb 2000 07:46:56 +0000 (07:46 +0000)
ext/standard/basic_functions.c

index 880cac7358c610cd5a204e3be0f5b3c4c00f5787..7c4ce933dcf57f0f56df39cd3baf1fa41a0c34c4 100644 (file)
@@ -1437,7 +1437,7 @@ PHP_FUNCTION(ignore_user_abort)
 /* }}} */
 
 /* {{{ proto int getservbyname(string service, string protocol)
-   Returns port associated with service. protocol must be "tcp" or "udp". */
+   Returns port associated with service. Protocol must be "tcp" or "udp". */
 PHP_FUNCTION(getservbyname)
 {
        pval **name,**proto;  
@@ -1483,7 +1483,7 @@ PHP_FUNCTION(getservbyport)
 
 
 /* {{{ proto int getprotobyname(string name)
-   Returns protocol number associated with name as per /etc/protocols. */
+   Returns protocol number associated with name as per /etc/protocols */
 PHP_FUNCTION(getprotobyname)
 {
        pval **name;
@@ -1509,7 +1509,7 @@ PHP_FUNCTION(getprotobyname)
                
 
 /* {{{ proto string getprotobynumber(int proto)
-   Returns protocol name associated with protocol number proto. */
+   Returns protocol name associated with protocol number proto */
 PHP_FUNCTION(getprotobynumber)
 {
        pval **proto;