diff options
author | Nuno Lopes <nlopess@php.net> | 2006-08-14 20:08:18 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-08-14 20:08:18 +0000 |
commit | ddb4d1fdcc2162edd7432080b117eaae6e24eb87 (patch) | |
tree | 8ab7c292e00edbe8ed2b9c1514894005e604a272 /ext/json/json.c | |
parent | 8657927354c6c03320f7733b5859cd5272712b33 (diff) | |
download | php-git-ddb4d1fdcc2162edd7432080b117eaae6e24eb87.tar.gz |
move static declaration to *.c files
mroe static/const keywording
Diffstat (limited to 'ext/json/json.c')
-rw-r--r-- | ext/json/json.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/ext/json/json.c b/ext/json/json.c index cbd5d3deb6..df02927d0a 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -30,6 +30,11 @@ #include "JSON_parser.h" #include "php_json.h" +static PHP_MINFO_FUNCTION(json); + +static PHP_FUNCTION(json_encode); +static PHP_FUNCTION(json_decode); + /* If you declare any globals in php_json.h uncomment this: ZEND_DECLARE_MODULE_GLOBALS(json) */ @@ -39,7 +44,7 @@ static const char digits[] = "0123456789abcdef"; * * Every user visible function must have an entry in json_functions[]. */ -function_entry json_functions[] = { +static function_entry json_functions[] = { PHP_FE(json_encode, NULL) PHP_FE(json_decode, NULL) {NULL, NULL, NULL} /* Must be the last line in json_functions[] */ @@ -72,7 +77,7 @@ ZEND_GET_MODULE(json) /* {{{ PHP_MINFO_FUNCTION */ -PHP_MINFO_FUNCTION(json) +static PHP_MINFO_FUNCTION(json) { php_info_print_table_start(); php_info_print_table_row(2, "json support", "enabled"); @@ -390,7 +395,7 @@ static void json_encode_r(smart_str *buf, zval *val TSRMLS_DC) { return; } -PHP_FUNCTION(json_encode) +static PHP_FUNCTION(json_encode) { zval *parameter; smart_str buf = {0}; @@ -406,7 +411,7 @@ PHP_FUNCTION(json_encode) smart_str_free(&buf); } -PHP_FUNCTION(json_decode) +static PHP_FUNCTION(json_decode) { char *parameter; int parameter_len, utf16_len; |