Backfill protos for ext/unicode functions

This commit is contained in:
Sara Golemon 2006-09-20 23:44:23 +00:00
parent 7ff8b9b090
commit 67af7e225c
4 changed files with 172 additions and 1 deletions

View file

@ -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: