diff options
| author | Egon Schmid <eschmid@php.net> | 2000-02-24 14:43:53 +0000 |
|---|---|---|
| committer | Egon Schmid <eschmid@php.net> | 2000-02-24 14:43:53 +0000 |
| commit | c07b5282af83c8bb3c1fe770c6f35cd64cfcb474 (patch) | |
| tree | f99f230b908e1451e9c64c91b960976ee3c918b9 /ext/yp/yp.c | |
| parent | 2b9b11d3af416c3619cc7527bf192c5f6df46124 (diff) | |
| download | php-git-c07b5282af83c8bb3c1fe770c6f35cd64cfcb474.tar.gz | |
More protos.
Diffstat (limited to 'ext/yp/yp.c')
| -rw-r--r-- | ext/yp/yp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/yp/yp.c b/ext/yp/yp.c index 7c210b5c93..c1e747f80f 100644 --- a/ext/yp/yp.c +++ b/ext/yp/yp.c @@ -47,7 +47,7 @@ zend_module_entry yp_module_entry = { }; /* {{{ proto string yp_get_default_domain(void) - Returns the domain or false */ + Returns the domain or false */ PHP_FUNCTION(yp_get_default_domain) { char *outdomain; @@ -59,7 +59,7 @@ PHP_FUNCTION(yp_get_default_domain) { /* }}} */ /* {{{ proto int yp_order(string domain, string map) - Returns the order number or false */ + Returns the order number or false */ PHP_FUNCTION(yp_order) { pval **domain, **map; @@ -85,7 +85,7 @@ PHP_FUNCTION(yp_order) { /* }}} */ /* {{{ proto string yp_master(string domain, string map) - Returns the machine name of the master */ + Returns the machine name of the master */ PHP_FUNCTION(yp_master) { pval **domain, **map; char *outname; @@ -106,7 +106,7 @@ PHP_FUNCTION(yp_master) { /* }}} */ /* {{{ proto string yp_match(string domain, string map, string key) - Returns the matched line or false */ + Returns the matched line or false */ PHP_FUNCTION(yp_match) { pval **domain, **map, **key; char *outval; @@ -129,7 +129,7 @@ PHP_FUNCTION(yp_match) { /* }}} */ /* {{{ proto array yp_first(string domain, string map) - Returns the first key as $var["key"] and the first line as $var["value"] */ + Returns the first key as $var["key"] and the first line as $var["value"] */ PHP_FUNCTION(yp_first) { pval **domain, **map; char *outval, *outkey; @@ -152,7 +152,7 @@ PHP_FUNCTION(yp_first) { /* }}} */ /* {{{ proto array yp_next(string domain, string map, string key) - Returns an array with $var[$key] and the the line as the value */ + Returns an array with $var[$key] and the the line as the value */ PHP_FUNCTION(yp_next) { pval **domain, **map, **key; char *outval, *outkey; |
