diff options
author | Sara Golemon <pollita@php.net> | 2006-09-20 23:44:23 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2006-09-20 23:44:23 +0000 |
commit | 67af7e225cd8b670be22b53a2b25e81972ee1d90 (patch) | |
tree | 118025bed4ac0c4c085a9837cd3130cfc5b28504 /ext/unicode/transform.c | |
parent | 7ff8b9b0907c83b488081599cc43d0323737fbfb (diff) | |
download | php-git-67af7e225cd8b670be22b53a2b25e81972ee1d90.tar.gz |
Backfill protos for ext/unicode functions
Diffstat (limited to 'ext/unicode/transform.c')
-rw-r--r-- | ext/unicode/transform.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/unicode/transform.c b/ext/unicode/transform.c index 4f9f5cd68c..cbda48b255 100644 --- a/ext/unicode/transform.c +++ b/ext/unicode/transform.c @@ -18,6 +18,8 @@ #include "php_unicode.h" +/* {{{ proto string str_transliterate(string str, string from, string to[, string variant]) U +Transliterate a string using the alphabet provided */ PHP_FUNCTION(str_transliterate) { UChar *str, *from, *to, *variant = NULL; @@ -81,6 +83,7 @@ PHP_FUNCTION(str_transliterate) RETURN_UNICODEL(result, result_len, 0); } +/* }}} */ /* * Local variables: |