diff options
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 94 |
1 files changed, 47 insertions, 47 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 96f2e32951..a12c9720e6 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -43,61 +43,61 @@ extern int php3_minit_basic(INIT_FUNC_ARGS); extern int php3_mshutdown_basic(SHUTDOWN_FUNC_ARGS); extern int php3_rinit_basic(INIT_FUNC_ARGS); extern int php3_rshutdown_basic(SHUTDOWN_FUNC_ARGS); -extern void int_value(INTERNAL_FUNCTION_PARAMETERS); -extern void double_value(INTERNAL_FUNCTION_PARAMETERS); -extern void string_value(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_toggle_short_open_tag(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_sleep(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_usleep(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_key_sort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_asort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_arsort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_sort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_rsort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_user_sort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_auser_sort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_user_key_sort(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_array_walk(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_count(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_flush(INTERNAL_FUNCTION_PARAMETERS); -extern void array_end(INTERNAL_FUNCTION_PARAMETERS); -extern void array_prev(INTERNAL_FUNCTION_PARAMETERS); -extern void array_next(INTERNAL_FUNCTION_PARAMETERS); -extern void array_each(INTERNAL_FUNCTION_PARAMETERS); -extern void array_reset(INTERNAL_FUNCTION_PARAMETERS); -extern void array_current(INTERNAL_FUNCTION_PARAMETERS); -extern void array_current_key(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_gettype(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_settype(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_min(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_max(INTERNAL_FUNCTION_PARAMETERS); +void int_value(INTERNAL_FUNCTION_PARAMETERS); +void double_value(INTERNAL_FUNCTION_PARAMETERS); +void string_value(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(toggle_short_open_tag); +PHP_FUNCTION(sleep); +PHP_FUNCTION(usleep); +PHP_FUNCTION(key_sort); +PHP_FUNCTION(asort); +PHP_FUNCTION(arsort); +PHP_FUNCTION(sort); +PHP_FUNCTION(rsort); +PHP_FUNCTION(user_sort); +PHP_FUNCTION(auser_sort); +PHP_FUNCTION(user_key_sort); +PHP_FUNCTION(array_walk); +PHP_FUNCTION(count); +PHP_FUNCTION(flush); +void array_end(INTERNAL_FUNCTION_PARAMETERS); +void array_prev(INTERNAL_FUNCTION_PARAMETERS); +void array_next(INTERNAL_FUNCTION_PARAMETERS); +void array_each(INTERNAL_FUNCTION_PARAMETERS); +void array_reset(INTERNAL_FUNCTION_PARAMETERS); +void array_current(INTERNAL_FUNCTION_PARAMETERS); +void array_current_key(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(gettype); +PHP_FUNCTION(settype); +PHP_FUNCTION(min); +PHP_FUNCTION(max); /* system functions */ -extern void php3_getenv(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_putenv(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_error_reporting(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(getenv); +PHP_FUNCTION(putenv); +PHP_FUNCTION(error_reporting); -extern void php3_get_current_user(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_set_time_limit(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(get_current_user); +PHP_FUNCTION(set_time_limit); -extern void php3_get_cfg_var(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_set_magic_quotes_runtime(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_get_magic_quotes_runtime(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_get_magic_quotes_gpc(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(get_cfg_var); +PHP_FUNCTION(set_magic_quotes_runtime); +PHP_FUNCTION(get_magic_quotes_runtime); +PHP_FUNCTION(get_magic_quotes_gpc); -extern void php3_is_type(INTERNAL_FUNCTION_PARAMETERS, int type); -extern void php3_is_long(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_is_double(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_is_string(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_is_array(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_is_object(INTERNAL_FUNCTION_PARAMETERS); +void php3_is_type(INTERNAL_FUNCTION_PARAMETERS, int type); +PHP_FUNCTION(is_long); +PHP_FUNCTION(is_double); +PHP_FUNCTION(is_string); +PHP_FUNCTION(is_array); +PHP_FUNCTION(is_object); -extern void php3_leak(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(leak); -extern void php3_error_log(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(error_log); -extern void php3_call_user_func(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_call_user_method(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(call_user_func); +PHP_FUNCTION(call_user_method); PHP_FUNCTION(register_shutdown_function); PHP_FUNCTION(highlight_file); |