1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00

Updated protos

Fixed vim folding
This commit is contained in:
Hannes Magnusson
2006-06-25 19:19:31 +00:00
parent 9f96f0340b
commit bf0a79d381
9 changed files with 22 additions and 21 deletions
+11 -10
View File
@@ -225,7 +225,7 @@ static int array_reverse_key_compare(const void *a, const void *b TSRMLS_DC)
return array_key_compare(a, b TSRMLS_CC) * -1;
}
/* {{{ proto bool krsort(array array_arg [, int sort_flags])
/* {{{ proto bool krsort(array &array_arg [, int sort_flags])
Sort an array by key value in reverse order */
PHP_FUNCTION(krsort)
{
@@ -247,7 +247,7 @@ PHP_FUNCTION(krsort)
}
/* }}} */
/* {{{ proto bool ksort(array array_arg [, int sort_flags])
/* {{{ proto bool ksort(array &array_arg [, int sort_flags])
Sort an array by key */
PHP_FUNCTION(ksort)
{
@@ -460,7 +460,7 @@ static void php_natsort(INTERNAL_FUNCTION_PARAMETERS, int fold_case)
}
/* {{{ proto void natsort(array array_arg)
/* {{{ proto void natsort(array &array_arg)
Sort an array using natural sort */
PHP_FUNCTION(natsort)
{
@@ -469,7 +469,7 @@ PHP_FUNCTION(natsort)
/* }}} */
/* {{{ proto void natcasesort(array array_arg)
/* {{{ proto void natcasesort(array &array_arg)
Sort an array using case-insensitive natural sort */
PHP_FUNCTION(natcasesort)
{
@@ -478,7 +478,7 @@ PHP_FUNCTION(natcasesort)
/* }}} */
/* {{{ proto bool asort(array array_arg [, int sort_flags])
/* {{{ proto bool asort(array &array_arg [, int sort_flags])
Sort an array and maintain index association */
PHP_FUNCTION(asort)
{
@@ -500,7 +500,7 @@ PHP_FUNCTION(asort)
}
/* }}} */
/* {{{ proto bool arsort(array array_arg [, int sort_flags])
/* {{{ proto bool arsort(array &array_arg [, int sort_flags])
Sort an array in reverse order and maintain index association */
PHP_FUNCTION(arsort)
{
@@ -522,7 +522,7 @@ PHP_FUNCTION(arsort)
}
/* }}} */
/* {{{ proto bool sort(array array_arg [, int sort_flags])
/* {{{ proto bool sort(array &array_arg [, int sort_flags])
Sort an array */
PHP_FUNCTION(sort)
{
@@ -544,7 +544,7 @@ PHP_FUNCTION(sort)
}
/* }}} */
/* {{{ proto bool rsort(array array_arg [, int sort_flags])
/* {{{ proto bool rsort(array &array_arg [, int sort_flags])
Sort an array in reverse order */
PHP_FUNCTION(rsort)
{
@@ -2306,7 +2306,7 @@ PHP_FUNCTION(array_splice)
/* }}} */
/* {{{ proto array array_slice(array input, int offset [, int length])
/* {{{ proto array array_slice(array input, int offset [, int length [, bool preserve_keys]])
Returns elements specified by offset and length */
PHP_FUNCTION(array_slice)
{
@@ -3372,6 +3372,7 @@ PHP_FUNCTION(array_intersect_key)
php_array_intersect(INTERNAL_FUNCTION_PARAM_PASSTHRU, INTERSECT_KEY,
INTERSECT_COMP_DATA_INTERNAL, INTERSECT_COMP_KEY_INTERNAL);
}
/* }}} */
/* {{{ proto array array_intersect_ukey(array arr1, array arr2 [, array ...], callback key_compare_func)
Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). The comparison of the keys is performed by a user supplied function. Equivalent of array_intersect_uassoc() but does not do compare of the data. */
@@ -3380,7 +3381,7 @@ PHP_FUNCTION(array_intersect_ukey)
php_array_intersect(INTERNAL_FUNCTION_PARAM_PASSTHRU, INTERSECT_KEY,
INTERSECT_COMP_DATA_INTERNAL, INTERSECT_COMP_KEY_USER);
}
/* }}} */
/* {{{ proto array array_intersect(array arr1, array arr2 [, array ...])
Returns the entries of arr1 that have values which are present in all the other arguments */
+2 -1
View File
@@ -853,6 +853,7 @@ PHP_FUNCTION(fprintf)
RETURN_LONG(len);
}
/* }}} */
/* {{{ proto int vfprintf(resource stream, string format, array args)
Output a formatted string into a stream */
@@ -883,7 +884,7 @@ PHP_FUNCTION(vfprintf)
RETURN_LONG(len);
}
/* }}} */
/*
+1 -1
View File
@@ -98,7 +98,7 @@ static int custom_levdist(void *str1, void *str2, char *callback_name TSRMLS_DC)
}
/* }}} */
/* {{{ proto int levenshtein(string str1, string str2)
/* {{{ proto int levenshtein(string str1, string str2[, int cost_ins, int cost_rep, int cost_del])
Calculate Levenshtein distance between two strings */
PHP_FUNCTION(levenshtein)
{
+1 -1
View File
@@ -29,7 +29,7 @@ static int metaphone(char *word, int word_len, int max_phonemes, char **phoned_w
PHP_FUNCTION(metaphone);
/* {{{ proto string metaphone(string text, int phones)
/* {{{ proto string metaphone(string text[, int phones])
Break english phrases down into their phonemes */
PHP_FUNCTION(metaphone)
{
+1
View File
@@ -1200,6 +1200,7 @@ static void apply_filter_to_stream(int append, INTERNAL_FUNCTION_PARAMETERS)
RETURN_FALSE;
}
}
/* }}} */
/* {{{ proto resource stream_filter_prepend(resource stream, string filtername[, int read_write[, string filterparams]])
Prepend a filter to a stream */
+3 -3
View File
@@ -1893,7 +1893,7 @@ PHP_FUNCTION(dirname)
}
/* }}} */
/* {{{ proto array pathinfo(string path)
/* {{{ proto array pathinfo(string path[, int options])
Returns information about a certain string */
PHP_FUNCTION(pathinfo)
{
@@ -2303,7 +2303,7 @@ PHP_FUNCTION(strstr)
}
/* }}} */
/* {{{ proto string strchr(string haystack, string needle)
/* {{{ proto string strchr(string haystack, string needle[, bool part])
An alias for strstr */
/* }}} */
@@ -3821,7 +3821,7 @@ static void php_strtr_array(zval *return_value, char *str, int slen, HashTable *
}
/* }}} */
/* {{{ proto string strtr(string str, string from, string to)
/* {{{ proto string strtr(string str, string from[, string to])
Translates characters in str using given translation tables */
PHP_FUNCTION(strtr)
{
+1 -1
View File
@@ -653,7 +653,7 @@ PHPAPI int php_raw_url_decode(char *str, int len)
}
/* }}} */
/* {{{ proto array get_headers(string url)
/* {{{ proto array get_headers(string url[, int format])
fetches all the headers sent by the server in response to a HTTP request */
PHP_FUNCTION(get_headers)
{
+2 -2
View File
@@ -183,7 +183,7 @@ err:
return -1;
}
/* {{{ proto string uuencode(string data)
/* {{{ proto string convert_uuencode(string data)
uuencode a string */
PHP_FUNCTION(convert_uuencode)
{
@@ -200,7 +200,7 @@ PHP_FUNCTION(convert_uuencode)
}
/* }}} */
/* {{{ proto string uudecode(string data)
/* {{{ proto string convert_uudecode(string data)
decode a uuencoded string */
PHP_FUNCTION(convert_uudecode)
{
-2
View File
@@ -204,8 +204,6 @@ php_version_compare(const char *orig_ver1, const char *orig_ver2)
}
/* }}} */
/* {{{ do_version_compare() */
/* {{{ proto int version_compare(string ver1, string ver2 [, string oper])
Compares two "PHP-standardized" version number strings */