diff options
Diffstat (limited to 'ext/standard/php3_string.h')
-rw-r--r-- | ext/standard/php3_string.h | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/ext/standard/php3_string.h b/ext/standard/php3_string.h index af90dbec5f..221c8e72d7 100644 --- a/ext/standard/php3_string.h +++ b/ext/standard/php3_string.h @@ -38,47 +38,47 @@ extern char *strtok_string; #endif -extern void php3_strlen(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strcmp(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strspn(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strcspn(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strcasecmp(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_str_replace(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_chop(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_trim(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_ltrim(INTERNAL_FUNCTION_PARAMETERS); -extern void soundex(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(strlen); +PHP_FUNCTION(strcmp); +PHP_FUNCTION(strspn); +PHP_FUNCTION(strcspn); +PHP_FUNCTION(strcasecmp); +PHP_FUNCTION(str_replace); +PHP_FUNCTION(chop); +PHP_FUNCTION(trim); +PHP_FUNCTION(ltrim); +void soundex(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_explode(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_implode(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strtok(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strtoupper(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strtolower(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_basename(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_dirname(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strstr(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strpos(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strrpos(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strrchr(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_substr(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_quotemeta(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_ucfirst(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_ucwords(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strtr(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_strrev(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_hebrev(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_hebrev_with_conversion(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_user_sprintf(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_user_printf(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_addslashes(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_stripslashes(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_chr(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_ord(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_newline_to_br(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_setlocale(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_stristr(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_chunk_split(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_parsestr(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(explode); +PHP_FUNCTION(implode); +PHP_FUNCTION(strtok); +PHP_FUNCTION(strtoupper); +PHP_FUNCTION(strtolower); +PHP_FUNCTION(basename); +PHP_FUNCTION(dirname); +PHP_FUNCTION(strstr); +PHP_FUNCTION(strpos); +PHP_FUNCTION(strrpos); +PHP_FUNCTION(strrchr); +PHP_FUNCTION(substr); +PHP_FUNCTION(quotemeta); +PHP_FUNCTION(ucfirst); +PHP_FUNCTION(ucwords); +PHP_FUNCTION(strtr); +PHP_FUNCTION(strrev); +PHP_FUNCTION(hebrev); +PHP_FUNCTION(hebrev_with_conversion); +PHP_FUNCTION(user_sprintf); +PHP_FUNCTION(user_printf); +PHP_FUNCTION(addslashes); +PHP_FUNCTION(stripslashes); +PHP_FUNCTION(chr); +PHP_FUNCTION(ord); +PHP_FUNCTION(newline_to_br); +PHP_FUNCTION(setlocale); +PHP_FUNCTION(stristr); +PHP_FUNCTION(chunk_split); +PHP_FUNCTION(parsestr); PHP_FUNCTION(bin2hex); extern PHPAPI char *_php3_strtoupper(char *s); |