diff options
Diffstat (limited to 'ext/json/php_json.h')
-rw-r--r-- | ext/json/php_json.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/json/php_json.h b/ext/json/php_json.h index 72fd61fa77..e27d9f9676 100644 --- a/ext/json/php_json.h +++ b/ext/json/php_json.h @@ -40,6 +40,9 @@ ZEND_END_MODULE_GLOBALS(json) # define JSON_G(v) (json_globals.v) #endif +PHPAPI void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC); +PHPAPI void php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, long depth TSRMLS_DC); + #endif /* PHP_JSON_H */ /* |