Nuke int32_t (everywhere except streams layer) and signed/unsigned warnings

This commit is contained in:
Dmitry Stogov 2006-03-02 13:12:45 +00:00
parent 8f567a5abb
commit c366cc6d1a
41 changed files with 252 additions and 235 deletions

View file

@ -38,7 +38,7 @@ static PHP_FUNCTION(unicode_decode)
UErrorCode status;
UConverter *conv = NULL;
UChar *target;
int32_t targetlen;
int targetlen;
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ts", &input.vptr, &len, &type, &encoding, &enclen)) {
return;
@ -87,7 +87,7 @@ static PHP_FUNCTION(unicode_encode)
UErrorCode status;
UConverter *conv = NULL;
char *target;
int32_t targetlen;
int targetlen;
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "us", &uni, &len, &encoding, &enclen)) {
return;