diff options
author | jim winstead <jimw@php.net> | 2002-01-09 23:47:46 +0000 |
---|---|---|
committer | jim winstead <jimw@php.net> | 2002-01-09 23:47:46 +0000 |
commit | e68095972ea476731a485410b72d39088b69f643 (patch) | |
tree | 52486b343058a74bf7115503efeeb7a40dc9d1d7 /ext/standard/basic_functions.h | |
parent | 98220d2a82d174ce5b157d44fabc255e953eedf2 (diff) | |
download | php-git-e68095972ea476731a485410b72d39088b69f643.tar.gz |
Move type-handling functions into ext/standard/type.c (which had
a few otherwise unused functions in it).
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 7472a6790a..4a0c42cdfa 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -39,15 +39,10 @@ PHP_RSHUTDOWN_FUNCTION(basic); PHP_MINFO_FUNCTION(basic); PHP_FUNCTION(constant); -PHP_FUNCTION(intval); -PHP_FUNCTION(floatval); -PHP_FUNCTION(strval); PHP_FUNCTION(toggle_short_open_tag); PHP_FUNCTION(sleep); PHP_FUNCTION(usleep); PHP_FUNCTION(flush); -PHP_FUNCTION(gettype); -PHP_FUNCTION(settype); PHP_FUNCTION(ip2long); PHP_FUNCTION(long2ip); @@ -63,18 +58,6 @@ PHP_FUNCTION(set_magic_quotes_runtime); PHP_FUNCTION(get_magic_quotes_runtime); PHP_FUNCTION(get_magic_quotes_gpc); -void php_is_type(INTERNAL_FUNCTION_PARAMETERS, int type); -PHP_FUNCTION(is_null); -PHP_FUNCTION(is_resource); -PHP_FUNCTION(is_bool); -PHP_FUNCTION(is_long); -PHP_FUNCTION(is_float); -PHP_FUNCTION(is_numeric); -PHP_FUNCTION(is_string); -PHP_FUNCTION(is_array); -PHP_FUNCTION(is_object); -PHP_FUNCTION(is_scalar); -PHP_FUNCTION(is_callable); PHP_FUNCTION(import_request_variables); PHP_FUNCTION(error_log); |